diff options
author | Federico Marani <federico.marani@ymail.com> | 2009-03-28 13:52:01 +0000 |
---|---|---|
committer | Federico Marani <federico.marani@ymail.com> | 2009-03-28 13:52:01 +0000 |
commit | 4b3f022fc2ff142e6d1cb6740b7f89108cfda292 (patch) | |
tree | a7e0f0e6730a02e6a2fc6196bbeabcb1b932baae /actions/peoplesearch.php | |
parent | 420c3613049bec1360cdeb1f50283b239adf23d3 (diff) | |
parent | 8c073a34ce472fc8d0385659a222339a5ba4254a (diff) |
Merge branch '0.8.x' of git://gitorious.org/laconica/dev into 0.8.x
Conflicts:
lib/jabber.php
Diffstat (limited to 'actions/peoplesearch.php')
-rw-r--r-- | actions/peoplesearch.php | 6 |
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; |