[phpMP-CVS] CVS: phpMP index.php,1.52,1.53
Status: Pre-Alpha
Brought to you by:
heimidal
From: Brian R. <hei...@us...> - 2003-09-14 21:55:55
|
Update of /cvsroot/phpmp/phpMP In directory sc8-pr-cvs1:/tmp/cvs-serv4582 Modified Files: index.php Log Message: Moved the lang array to $User. No need for a class with only one function. Index: index.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/index.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -r1.52 -r1.53 *** index.php 14 Sep 2003 21:50:32 -0000 1.52 --- index.php 14 Sep 2003 21:55:51 -0000 1.53 *************** *** 31,39 **** $Template->assign_vars( array( ! 'C_SITE_NAME' => $Portal->get('site_name'), ! 'C_SITE_ADDRESS' => $Portal->get('site_domain') . $Portal->get('rel_path'), ! 'C_VERSION' => $Portal->get('version'), ! 'C_REL_PATH' => $Portal->get('rel_path'), ! 'C_TEMPLATE' => $Portal->get('template'), 'U_USERNAME' => $User->get('user_name') ) ); --- 31,39 ---- $Template->assign_vars( array( ! 'C_SITE_NAME' => $Portal->cfg_get('site_name'), ! 'C_SITE_ADDRESS' => $Portal->cfg_get('site_domain') . $Portal->cfg_get('rel_path'), ! 'C_VERSION' => $Portal->cfg_get('version'), ! 'C_REL_PATH' => $Portal->cfg_get('rel_path'), ! 'C_TEMPLATE' => $Portal->cfg_get('template'), 'U_USERNAME' => $User->get('user_name') ) ); |