diff options
| -rw-r--r-- | app/views/request/_search_ahead.rhtml | 2 | ||||
| -rw-r--r-- | spec/controllers/request_controller_spec.rb | 2 | 
2 files changed, 3 insertions, 1 deletions
diff --git a/app/views/request/_search_ahead.rhtml b/app/views/request/_search_ahead.rhtml index d0b19de7d..1e65a5458 100644 --- a/app/views/request/_search_ahead.rhtml +++ b/app/views/request/_search_ahead.rhtml @@ -8,7 +8,7 @@      <% end %>      <p> -        <a id="body-site-search-link" target="_blank"><%= _("Or search in their website for this information.") %></a> +        <a id="body-site-search-link"><%= _("Or search in their website for this information.") %></a>      </p>    <% end %>  </div> diff --git a/spec/controllers/request_controller_spec.rb b/spec/controllers/request_controller_spec.rb index 86665a793..b8056d782 100644 --- a/spec/controllers/request_controller_spec.rb +++ b/spec/controllers/request_controller_spec.rb @@ -1493,6 +1493,8 @@ end  describe RequestController, "when doing type ahead searches" do      fixtures :public_bodies, :public_body_translations, :public_body_versions, :users, :info_requests, :raw_emails, :incoming_messages, :outgoing_messages, :comments, :info_request_events, :track_things  +    integrate_views +      it "should return nothing for the empty query string" do          get :search_typeahead, :q => ""          response.should render_template('request/_search_ahead.rhtml')  | 
