From 5c454571af93a26641fe69662cd4336fa0ba3c99 Mon Sep 17 00:00:00 2001 From: e107steved Date: Thu, 31 May 2007 21:17:17 +0000 Subject: [PATCH] Bugtracker #3919 - absolute URLs for images --- e107_plugins/siteinfo_menu/compliance_menu.php | 2 +- e107_plugins/tree_menu/tree_menu.php | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/e107_plugins/siteinfo_menu/compliance_menu.php b/e107_plugins/siteinfo_menu/compliance_menu.php index a4a29dbcc..2704959ef 100644 --- a/e107_plugins/siteinfo_menu/compliance_menu.php +++ b/e107_plugins/siteinfo_menu/compliance_menu.php @@ -6,6 +6,6 @@ $text = "
Valid XHTML 1.1!
Valid CSS!
"; -$caption = (file_exists(THEME."images/compliance_menu.png") ? " ".COMPLIANCE_L1 : COMPLIANCE_L1); +$caption = (file_exists(THEME."images/compliance_menu.png") ? " ".COMPLIANCE_L1 : COMPLIANCE_L1); $ns->tablerender($caption, $text, 'compliance'); ?> \ No newline at end of file diff --git a/e107_plugins/tree_menu/tree_menu.php b/e107_plugins/tree_menu/tree_menu.php index d0322d77b..dad465cce 100644 --- a/e107_plugins/tree_menu/tree_menu.php +++ b/e107_plugins/tree_menu/tree_menu.php @@ -12,9 +12,9 @@ | GNU General Public License (http://gnu.org). | | $Source: /cvs_backup/e107_0.8/e107_plugins/tree_menu/tree_menu.php,v $ -| $Revision: 1.2 $ -| $Date: 2007-03-25 08:49:54 $ -| $Author: lisa_ $ +| $Revision: 1.3 $ +| $Date: 2007-05-31 21:17:17 $ +| $Author: e107steved $ +----------------------------------------------------------------------------+ */ @@ -94,7 +94,7 @@ foreach($mainLinkArray as $links) { $url = "javascript:void(0);"; $spanName = $id; - $image = ($image ? "" : "»"); + $image = ($image ? "" : "»"); $plink = "".$image." ".setLink($name, $url, $openMethod, $description)."\n"; $text .= ($menu_pref['tm_spacer'] ? "
\n".$plink."\n
\n" : $plink); } else { @@ -103,7 +103,7 @@ foreach($mainLinkArray as $links) { { $linkName = $url; $spanName = ""; - $image = ($image ? "" : "·"); + $image = ($image ? "" : "·"); $plink = "".$image." ".setLink($name, $url, $openMethod, $description).""; $text .= ($menu_pref['tm_spacer'] ? "
\n".$plink."\n
\n" : $plink); } @@ -115,7 +115,7 @@ foreach($mainLinkArray as $links) { $text .= "\n\n"; foreach($sublink as $link) { extract($link); - $image = ($image ? " " : "· "); + $image = ($image ? " " : "· "); $spanName = $parent_name; $plink = $image." ".setLink($name, $url, $openMethod, $description)."
\n";