diff --git a/root/search.tx b/root/search.tx
index adc354bd82..ebdcbe1411 100644
--- a/root/search.tx
+++ b/root/search.tx
@@ -4,6 +4,16 @@
%% after content_classes -> { ' search-results' }
%% override content -> {
+
+%% if $pageset && $pageset.total_entries {
+
+ [% $pageset.total_entries | format_number %]
+ [% pluralize("result", $pageset.total_entries) %]
+ [% if $took { %] ([% $took / 1000 %] seconds)[% } %]
+
+
+%% }
+
%% if $authors.total {
diff --git a/t/controller/search.t b/t/controller/search.t
index 30be85ae13..868d93457f 100644
--- a/t/controller/search.t
+++ b/t/controller/search.t
@@ -43,7 +43,7 @@ test_psgi app, sub {
my $tx = tx($res);
$tx->like( '/html/head/title', qr/moose/, 'title includes search term' );
my $release
- = $tx->find_value(qq!//$xpath{search_results}//div[1]/h3/a/\@href!);
+ = $tx->find_value(qq!//$xpath{search_results}//div[2]/h3/a/\@href!);
ok( $release, "found release $release" );
{