[phpwebapp-commits] CVS: web_app class.WebApp.php,1.15,1.16 const.Paths.php,1.4,1.5
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-05-11 06:53:32
|
Update of /cvsroot/phpwebapp/web_app In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12532 Modified Files: class.WebApp.php const.Paths.php Log Message: Index: class.WebApp.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/class.WebApp.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** class.WebApp.php 20 Jan 2004 07:33:24 -0000 1.15 --- class.WebApp.php 11 May 2004 06:53:22 -0000 1.16 *************** *** 297,301 **** eval("global $var_names;"); } ! eval("\$webApp_value = $expr;"); return $webApp_value; } --- 297,309 ---- eval("global $var_names;"); } ! ! @eval("\$webApp_value = $expr;"); ! $errormsg = $php_errormsg; ! if ($errormsg<>'') ! { ! $err_msg = "Evaluating expression: '\$value = $expr;' $errormsg"; ! print WebApp::error_msg($err_msg); ! } ! return $webApp_value; } Index: const.Paths.php =================================================================== RCS file: /cvsroot/phpwebapp/web_app/const.Paths.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** const.Paths.php 25 Aug 2003 13:18:39 -0000 1.4 --- const.Paths.php 11 May 2004 06:53:22 -0000 1.5 *************** *** 40,44 **** define("TABLE_PATH", WEBOBJ_PATH."table/"); define("DBTABLE_PATH", WEBOBJ_PATH."dbTable/"); ! define("LEFTMENU_PATH", WEBOBJ_PATH."leftMenu/"); //WebBox paths --- 40,44 ---- define("TABLE_PATH", WEBOBJ_PATH."table/"); define("DBTABLE_PATH", WEBOBJ_PATH."dbTable/"); ! define("TABS_PATH", WEBOBJ_PATH."tabs/"); //WebBox paths |