From a87ef98aefb5a9da3925966f0a2c628749906360 Mon Sep 17 00:00:00 2001 From: Alexey Verkhovsky Date: Sun, 27 Mar 2005 14:23:09 +0000 Subject: [PATCH] Replaced web.name with web.address in navigation.rhtml links --- app/views/navigation.rhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/navigation.rhtml b/app/views/navigation.rhtml index aa7b1ca8..66bc1198 100644 --- a/app/views/navigation.rhtml +++ b/app/views/navigation.rhtml @@ -1,7 +1,7 @@ <% def list_item(text, link_options, description, accesskey = nil) link_options[:controller] = 'wiki' - link_options[:web] = @web.name + link_options[:web] = @web.address link_to_unless_current(text, link_options, :title => description, :accesskey => accesskey) { content_tag('b', text, 'title' => description, 'accesskey' => accesskey, 'class' => 'navOn') }