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 /views/default/input | |
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 'views/default/input')
-rw-r--r-- | views/default/input/autocomplete.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/input/autocomplete.php b/views/default/input/autocomplete.php index b16d08fc3..0a4057ddf 100644 --- a/views/default/input/autocomplete.php +++ b/views/default/input/autocomplete.php @@ -35,7 +35,7 @@ elgg_load_js('elgg.autocomplete'); <script type="text/javascript"> elgg.provide('elgg.autocomplete'); -elgg.autocomplete.url = "<?php elgg_get_site_url() . 'livesearch?' . $ac_url_params; ?>"; +elgg.autocomplete.url = "<?php echo elgg_get_site_url() . 'livesearch?' . $ac_url_params; ?>"; </script> <input type="text" <?php echo elgg_format_attributes($vars); ?> /> |