Fixed a hard-coded link to :web/search, ticket:149
This commit is contained in:
parent
389242747e
commit
9b6c391062
|
@ -8,8 +8,10 @@ def list_item(text, link_options, description, accesskey = nil)
|
||||||
end
|
end
|
||||||
%>
|
%>
|
||||||
|
|
||||||
<form id="navigationForm" class="navigation" action="../search/" method="get" style="font-size: 10px">
|
<%= form_tag({ :controller => 'wiki', :action => 'search', :web => @web.address},
|
||||||
|
{'id' => 'navigationForm', 'class' => 'navigation', 'method' => 'get'})
|
||||||
|
%>
|
||||||
|
|
||||||
<% if @action_name != 'published' then %>
|
<% if @action_name != 'published' then %>
|
||||||
<%= list_item 'Home Page', {:action => 'show', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
<%= list_item 'Home Page', {:action => 'show', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
||||||
<%= list_item 'All Pages', {:action => 'list'}, 'Alphabetically sorted list of pages', 'A' %> |
|
<%= list_item 'All Pages', {:action => 'list'}, 'Alphabetically sorted list of pages', 'A' %> |
|
||||||
|
@ -27,4 +29,4 @@ end
|
||||||
<%= list_item 'Home Page', {:action => 'published', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
<%= list_item 'Home Page', {:action => 'published', :id => 'HomePage'}, 'Home, Sweet Home', 'H' %> |
|
||||||
<% end%>
|
<% end%>
|
||||||
|
|
||||||
</form>
|
<%= end_form_tag %>
|
||||||
|
|
Loading…
Reference in a new issue