summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-04-06 01:14:59 +0000
committerRobin Millette <millette@controlyourself.ca>2009-04-06 01:14:59 +0000
commit84d2aa7df49dc85603dd6c2d60c1f605800a458c (patch)
tree55209f3626f35cce1df08a45d9d167a67d223a87
parent1ee24a2aaf6d07f0f6ffd4697da88c43b140bd13 (diff)
refactored search suggestions and added forgotten sprintf.
-rw-r--r--actions/peoplesearch.php21
-rw-r--r--lib/searchaction.php23
2 files changed, 25 insertions, 19 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php
index 6fbb19b88..3ce719dd5 100644
--- a/actions/peoplesearch.php
+++ b/actions/peoplesearch.php
@@ -82,25 +82,8 @@ class PeoplesearchAction extends SearchAction
} else {
$this->element('p', 'error', _('No results.'));
- $qe = urlencode($q);
- $message = _(<<<E_O_T
-* Make sure all words are spelled correctly.
-* Try different keywords.
-* Try more general keywords.
-* Try fewer keywords.
-
-You can also try your search on other engines:
-
-* [Twingly](http://www.twingly.com/search?q=$qe&content=microblog&site=identi.ca)
-* [Tweet scan](http://www.tweetscan.com/indexi.php?s=$qe)
-* [Google](http://www.google.com/search?q=site%3Aidenti.ca+$qe)
-* [Yahoo](http://search.yahoo.com/search?p=site%3Aidenti.ca+$qe)
-
-E_O_T
-);
- $this->elementStart('div', 'blankfiller');
- $this->raw(common_markup_to_html($message));
- $this->elementEnd('div');
+//TODO
+ $this->searchSuggestions($q);
$profile->free();
}
}
diff --git a/lib/searchaction.php b/lib/searchaction.php
index c762db16f..697262ccd 100644
--- a/lib/searchaction.php
+++ b/lib/searchaction.php
@@ -133,5 +133,28 @@ class SearchAction extends Action
$this->showResults($q, $page);
}
}
+
+ function searchSuggestions($q) {
+ $qe = urlencode($q);
+ $message = sprintf(_(<<<E_O_T
+* Make sure all words are spelled correctly.
+* Try different keywords.
+* Try more general keywords.
+* Try fewer keywords.
+
+You can also try your search on other engines:
+
+* [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=identi.ca)
+* [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)
+* [Google](http://www.google.com/search?q=site%%3Aidenti.ca+%s)
+* [Yahoo](http://search.yahoo.com/search?p=site%%3Aidenti.ca+%s)
+
+
+E_O_T
+), $qe, $qe, $qe, $qe);
+ $this->elementStart('div', 'blankfiller');
+ $this->raw(common_markup_to_html($message));
+ $this->elementEnd('div');
+ }
}