fixed navbar to use the new functions

This commit is contained in:
seek3r 2000-12-19 19:19:34 +00:00
parent e045c4236e
commit b6e9eb701e

View File

@ -329,16 +329,13 @@
$output_text = "<A href=\"" . $phpgw->link($urlbasename."/$appname/index.php"); $output_text = "<A href=\"" . $phpgw->link($urlbasename."/$appname/index.php");
} }
$output_text .= "\"$target>"; $output_text .= "\"$target>";
if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] != "text") { if ($phpgw_info["user"]["preferences"]["common"]["navbar_format"] != "text") {
if ($appname != "home" && $appname != "logout" && $appname != "print") { if ($appname != "home" && $appname != "logout" && $appname != "print") {
$output_text .= "<img src=\"" . $phpgw_info["server"]["webserver_url"] $output_text .= "<img src=\"" . $this->get_image_path($appname) . "/navbar.gif\" border=0 alt=\"" . lang($description) . "\">";
. "/" . $appname . "/templates/".$phpgw_info["server"]["template_set"]."/images" . "/navbar.gif\" border=0 alt=\"" . lang($description) . "\">";
} else { } else {
$output_text .= "<img src=\"" . $phpgw_info["server"]["images_dir"]."/$appname.gif\" border=0 alt=\"" . lang($description) . "\">"; $output_text .= "<img src=\"" . $phpgw_info["server"]["images_dir"]."/$appname.gif\" border=0 alt=\"" . lang($description) . "\">";
} }
} }
if (ereg("text",$phpgw_info["user"]["preferences"]["common"]["navbar_format"])) { if (ereg("text",$phpgw_info["user"]["preferences"]["common"]["navbar_format"])) {
$output_text .= "<br><font size=\"-2\">" . lang($description) . "</font>"; $output_text .= "<br><font size=\"-2\">" . lang($description) . "</font>";
} }