diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-26 16:24:02 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-04-26 16:24:02 +0000 |
commit | 7944c2a3c3fda7cb6bf4af6c68435f5c223f4b51 (patch) | |
tree | e753373d4a671de973e5a9ae036e7dd443e3f151 /engine/lib | |
parent | f232deeb4d3308f6a6482845c80edec0d76f867f (diff) | |
download | elgg-7944c2a3c3fda7cb6bf4af6c68435f5c223f4b51.tar.gz elgg-7944c2a3c3fda7cb6bf4af6c68435f5c223f4b51.tar.bz2 |
Fixes #2922: pg/livesearch now works with "term" parameter
git-svn-id: http://code.elgg.org/elgg/trunk@9025 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/input.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/input.php b/engine/lib/input.php index 25416b868..84752bc7d 100644 --- a/engine/lib/input.php +++ b/engine/lib/input.php @@ -237,7 +237,7 @@ function input_livesearch_page_handler($page) { exit; } - if (!$q = get_input('q')) { + if (!$q = get_input('term', get_input('q'))) { exit; } |