Update of /cvsroot/phpmp/phpMP
In directory sc8-pr-cvs1:/tmp/cvs-serv14633
Modified Files:
index.php
Log Message:
Consolidated the Config class into the Core class
Index: index.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/index.php,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -r1.48 -r1.49
*** index.php 30 Jun 2003 23:13:47 -0000 1.48
--- index.php 14 Sep 2003 07:02:09 -0000 1.49
***************
*** 30,38 ****
$Template->assign_vars( array(
! 'C_SITE_NAME' => $Config->get('site_name'),
! 'C_SITE_ADDRESS' => $Config->get('site_domain') . $Config->get('rel_path'),
! 'C_VERSION' => $Config->get('version'),
! 'C_REL_PATH' => $Config->get('rel_path'),
! 'C_TEMPLATE' => $Config->get('template'),
'U_USERNAME' => $User->get('user_name')
) );
--- 30,38 ----
$Template->assign_vars( array(
! 'C_SITE_NAME' => $Core->get('site_name'),
! 'C_SITE_ADDRESS' => $Core->get('site_domain') . $Core->get('rel_path'),
! 'C_VERSION' => $Core->get('version'),
! 'C_REL_PATH' => $Core->get('rel_path'),
! 'C_TEMPLATE' => $Core->get('template'),
'U_USERNAME' => $User->get('user_name')
) );
|