[PHPPlanner-cvs] phpplanner common.php,1.14,1.15 install.php,1.10,1.11
Status: Beta
Brought to you by:
tomsommer
From: Tom S. <tom...@us...> - 2004-04-24 22:50:31
|
Update of /cvsroot/phpplanner/phpplanner In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5444 Modified Files: common.php install.php Log Message: fixups Index: install.php =================================================================== RCS file: /cvsroot/phpplanner/phpplanner/install.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- install.php 24 Apr 2004 22:22:19 -0000 1.10 +++ install.php 24 Apr 2004 22:50:20 -0000 1.11 @@ -32,7 +32,7 @@ 'cell_height' => '60', 'table_width' => '755', 'show_hints' => 'true', - 'hide' => 'false', + 'hide_to_unregistered' => 'false', 'require_mail_validation' => 'true', 'language' => '"english"', 'debug' => 'false'); Index: common.php =================================================================== RCS file: /cvsroot/phpplanner/phpplanner/common.php,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- common.php 24 Apr 2004 22:38:37 -0000 1.14 +++ common.php 24 Apr 2004 22:50:20 -0000 1.15 @@ -18,7 +18,7 @@ require_once(SMARTY_DIR .'Smarty.class.php'); $smarty = new Smarty; - if ( $config['debug'] ) + if ( @$config['debug'] ) { $smarty->compile_check = true; $smarty->force_compile = true; |