|
From: Sven <bra...@us...> - 2005-01-09 14:23:10
|
Update of /cvsroot/osbb/osbb/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16053/lib Modified Files: functions.inc.php templates2file.php Log Message: made the login working again with the new template system Index: functions.inc.php =================================================================== RCS file: /cvsroot/osbb/osbb/lib/functions.inc.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** functions.inc.php 8 Jan 2005 16:19:10 -0000 1.22 --- functions.inc.php 9 Jan 2005 14:23:01 -0000 1.23 *************** *** 720,724 **** $template->assignVar('html','title',$title); $template->assignVar('html','style',$userdata['style']); ! $template->assignVar('html','head',$head); $template->assignVar('html','locator',$locator); $template->assignVar('html','userid',$userid); --- 720,724 ---- $template->assignVar('html','title',$title); $template->assignVar('html','style',$userdata['style']); ! $template->assignVar('html','head',($head != '' ? $head : '')); $template->assignVar('html','locator',$locator); $template->assignVar('html','userid',$userid); Index: templates2file.php =================================================================== RCS file: /cvsroot/osbb/osbb/lib/templates2file.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** templates2file.php 8 Jan 2005 16:19:10 -0000 1.6 --- templates2file.php 9 Jan 2005 14:23:01 -0000 1.7 *************** *** 44,47 **** --- 44,50 ---- $templates[] = 'pagelink'; break; + case 'login.php': + $templates[] = 'login'; + break; } ?> |