Things are now using the templates

This commit is contained in:
jengo 2001-01-06 04:17:47 +00:00
parent 6d61ab9c87
commit 40d3507e7a
3 changed files with 4 additions and 4 deletions

View File

@ -41,6 +41,8 @@
- Changed navbar() to return an array for use in different template sets.
- Each template set can now have its own custom navbar
- Moved all mainscreen areas to use hooks.
- Created functions for change password and remove it out of change password.
Each authenication type has its own function to handle it.
[0.9.7] - Fixed SQL error in tts
- Fixed table locking in admin -> edit account

View File

@ -33,8 +33,7 @@
$tpl->set_file(array("footer" => "footer.tpl"));
$tpl->set_var("img_root",$phpgw_info["server"]["webserver_url"] . "/phpgwapi/templates/verdilak/images");
// $tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
$tpl->set_var("table_bg_color","990000");
$tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
echo $tpl->finish($tpl->parse("out","footer"));
// This will need to be converted into the classic template

View File

@ -21,8 +21,7 @@
$tpl->set_file(array("navbar" => "navbar.tpl"));
$tpl->set_var("img_root",$phpgw_info["server"]["webserver_url"] . "/phpgwapi/templates/verdilak/images");
//$tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
$tpl->set_var("table_bg_color","990000");
$tpl->set_var("table_bg_color",$phpgw_info["theme"]["navbar_bg"]);
if ($phpgw_info["flags"]["navbar_target"]) {
$target = ' target="' . $phpgw_info["flags"]["navbar_target"] . '"';