diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-14 08:04:28 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-14 08:04:28 +0000 |
commit | aa5bb3f0bc17d858831412da82eef805ecafac89 (patch) | |
tree | 1a8c281c27778755bd9db83f8aa5822706a3b5db /mod/file/search.php | |
parent | bddba2985d89ff3ed9f52681b37cdce7a9c22bd9 (diff) | |
download | elgg-aa5bb3f0bc17d858831412da82eef805ecafac89.tar.gz elgg-aa5bb3f0bc17d858831412da82eef805ecafac89.tar.bz2 |
Fixes #2334: Converted viewtype => listtype and viewtypetoggle => listtypetoggle. Did my best to maintain backwards compatibility but might have missed something...
git-svn-id: http://code.elgg.org/elgg/trunk@7311 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/search.php')
-rw-r--r-- | mod/file/search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/search.php b/mod/file/search.php index 8dd4669a9..5c6c0a969 100644 --- a/mod/file/search.php +++ b/mod/file/search.php @@ -14,7 +14,7 @@ // Get input $md_type = 'simpletype'; $tag = get_input('tag'); - $search_viewtype = get_input('search_viewtype'); + $listtype = get_input('listtype'); $friends = (int) get_input('friends_guid',0); if ($friends) { @@ -73,7 +73,7 @@ $offset = (int)get_input('offset', 0); $limit = 10; - if ($search_viewtype == "gallery") $limit = 12; + if ($listtype == "gallery") $limit = 12; if (!empty($tag)) { $params = array( 'metadata_name' => $md_type, |