|
From: Paul S. O. <ps...@us...> - 2002-04-04 11:53:54
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv1645/includes
Modified Files:
constants.php
Log Message:
Switch off DEBUG mode ... will have to ask users to enable this in some cases during bug reporting but this will prevent piles of SQL being output in a few unecessary places
Index: constants.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/constants.php,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -r1.46 -r1.47
*** constants.php 2 Apr 2002 21:13:47 -0000 1.46
--- constants.php 4 Apr 2002 11:53:50 -0000 1.47
***************
*** 27,32 ****
// Debug Level
! define('DEBUG', 1); // Debugging on
! //define('DEBUG', 0); // Debugging off
--- 27,32 ----
// Debug Level
! //define('DEBUG', 1); // Debugging on
! define('DEBUG', 0); // Debugging off
***************
*** 179,181 ****
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
! ?>
--- 179,181 ----
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
! ?>
\ No newline at end of file
|