diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-12-14 09:43:27 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-12-14 09:43:27 -0800 |
commit | 003ba116c8e909a76e2445c56b82833acee1cdbc (patch) | |
tree | 8b8d067727ace587acf778beba6f4736145158ff | |
parent | 7c62c67d56e854f69a411dd56c48ef066f951c48 (diff) |
Bugfix follow-on to a74e3aea6f0bdde210c91622535af3e58aa1e9fd - thanks to chilversc.
-rw-r--r-- | modules/search/helpers/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/search/helpers/search.php b/modules/search/helpers/search.php index 64a13825..d4444158 100644 --- a/modules/search/helpers/search.php +++ b/modules/search/helpers/search.php @@ -124,7 +124,7 @@ class search_Core { item::clear_display_context_callback(); url::redirect(url::current()); } - $score = $current->score(); + $score = $current->score; if (strlen($score) > 7) { $score = substr($score, 0, strlen($score) - 2); } |