From 993ff5bbc4ae0c3c25e6765f2354e59260aec58a Mon Sep 17 00:00:00 2001 From: JT Smith Date: Fri, 31 May 2002 01:48:13 +0000 Subject: [PATCH] Was displaying the page url rather than the menu title. --- lib/WebGUI/Macro/s_specificMenuHorizontal.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/WebGUI/Macro/s_specificMenuHorizontal.pm b/lib/WebGUI/Macro/s_specificMenuHorizontal.pm index 54a566ff4..714bc161c 100644 --- a/lib/WebGUI/Macro/s_specificMenuHorizontal.pm +++ b/lib/WebGUI/Macro/s_specificMenuHorizontal.pm @@ -40,9 +40,9 @@ sub _replacement { } $temp .= ''; if ($session{page}{pageId} == $data[2]) { - $temp .= ''.$data[1].''; + $temp .= ''.$data[0].''; } else { - $temp .= $data[1]; + $temp .= $data[0]; } $temp .= ''; }