summaryrefslogtreecommitdiff
path: root/actions/peoplesearch.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-19 11:03:07 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-19 11:03:07 -0400
commit739bb522fd5d3ec57d6b7a7398c33f96d65a8d4e (patch)
tree6a20993fbdbbf9467d36a2a5d87de73a807435c2 /actions/peoplesearch.php
parente7c57b43073888d18760e2411b207a4ee2cf508b (diff)
parentd1b2a9d7087ecc171f941755b4c3a420cd202842 (diff)
Merge branch 'master' into 0.7.x
Diffstat (limited to 'actions/peoplesearch.php')
-rw-r--r--actions/peoplesearch.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/peoplesearch.php b/actions/peoplesearch.php
index 14177fcf0..9e515ade1 100644
--- a/actions/peoplesearch.php
+++ b/actions/peoplesearch.php
@@ -63,13 +63,13 @@ class PeoplesearchAction extends SearchAction
$profile = new Profile();
- # lcase it for comparison
- $q = strtolower($q);
+ // lcase it for comparison
+ // $q = strtolower($q);
$search_engine = $profile->getSearchEngine('identica_people');
$search_engine->set_sort_mode('chron');
- # Ask for an extra to see if there's more.
+ // Ask for an extra to see if there's more.
$search_engine->limit((($page-1)*PROFILES_PER_PAGE), PROFILES_PER_PAGE + 1);
if (false === $search_engine->query($q)) {
$cnt = 0;