From 1ea1666e3f79459a3c99f2ef073e965021717536 Mon Sep 17 00:00:00 2001 From: osmiy Date: Mon, 22 May 2006 12:54:59 +0000 Subject: - fixed limit error in alarms (Eugene) - fixed (2. SQL errors in frontend) (Eugene) from URL: http://www.zabbix.com/forum/showthread.php?t=2837 git-svn-id: svn://svn.zabbix.com/trunk@2876 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/config.inc.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'frontends/php/include/config.inc.php') diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index 5122429a..bbe2e755 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -1020,7 +1020,10 @@ COpt::profiling_start("page"); { global $page; $class = "horizontal_menu"; - $url = $page["file"]; + if(isset($page["menu.url"])) + $url = $page["menu.url"]; + else + $url = $page["file"]; } else { -- cgit