Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10650
Modified Files:
Tag: branch-smarty
serendipity_config.inc.php
Log Message:
* fixed entryproperties caching (cough, cough)
* fixed recent entries plugin (variable garbage)
* fixed some E_NOTICE errors to be nicer to PHP's error reporting
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.93.2.19
retrieving revision 1.93.2.20
diff -u -d -r1.93.2.19 -r1.93.2.20
--- serendipity_config.inc.php 16 Nov 2004 13:21:42 -0000 1.93.2.19
+++ serendipity_config.inc.php 16 Nov 2004 15:23:41 -0000 1.93.2.20
@@ -17,7 +17,7 @@
$serendipity['version'] = '0.8-alpha3';
$serendipity['defaultTemplate'] = 'default'; // Name of folder for the default theme
-$serendipity['production'] = 1;
+$serendipity['production'] = true; // Setting this to 'false' will enable debugging output
$serendipity['rewrite'] = 'none';
$serendipity['messagestack'] = array();
@@ -234,7 +234,7 @@
define('SMARTY_DIR', S9Y_INCLUDE_PATH . 'bundled-libs/Smarty/libs/');
require_once SMARTY_DIR . 'Smarty.class.php';
$serendipity['smarty'] = new Smarty;
-if ( !$serendipity['production'] ) {
+if (!$serendipity['production']) {
$serendipity['smarty']->force_compile = true;
$serendipity['smarty']->debugging = true;
}
|