diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-09-28 13:42:12 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-09-28 13:42:12 +0000 |
commit | 42a987316f1252b6b1aed4294869d61f41961038 (patch) | |
tree | 02b8435e96be0c515c86692ed153fde555616ae8 | |
parent | a5e048a5fd3b3f45fad4a94003d225d6f0401748 (diff) | |
download | brdo-42a987316f1252b6b1aed4294869d61f41961038.tar.gz brdo-42a987316f1252b6b1aed4294869d61f41961038.tar.bz2 |
- Fixed bug #3037: fixed translation issue with menu items.
-rw-r--r-- | includes/menu.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/menu.inc b/includes/menu.inc index 99a298f43..6180c1e50 100644 --- a/includes/menu.inc +++ b/includes/menu.inc @@ -199,7 +199,7 @@ function _render_item($path) { $css = " class=\"active\""; } - return "<a href=\"". url($path) ."\"$css>". t($_list[$path]["title"]) ."</a>"; + return "<a href=\"". url($path) ."\"$css>". $_list[$path]["title"] ."</a>"; } |