summaryrefslogtreecommitdiffstats
path: root/askbot/media
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-23 21:36:57 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2013-04-23 21:36:57 -0400
commitc434f8f341487e98a70d0f4faac801a691590748 (patch)
treecdeb2de5d0a9a960ca00055e3fba89462783d557 /askbot/media
parentb2c21e00e4155480d18f00c9e44e4a9e96ad1604 (diff)
downloadaskbot-c434f8f341487e98a70d0f4faac801a691590748.tar.gz
askbot-c434f8f341487e98a70d0f4faac801a691590748.tar.bz2
askbot-c434f8f341487e98a70d0f4faac801a691590748.zip
fixed the slash in the search query bug
Diffstat (limited to 'askbot/media')
-rw-r--r--askbot/media/js/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/media/js/utils.js b/askbot/media/js/utils.js
index f2cc0108..9d1e1c51 100644
--- a/askbot/media/js/utils.js
+++ b/askbot/media/js/utils.js
@@ -284,10 +284,10 @@ QSutils.patch_query_string = function (query_string, patch, remove) {
/* The order of selectors should match the Django URL */
add_selector('scope');
add_selector('sort');
- add_selector('query');
add_selector('tags');
add_selector('author');
add_selector('page');
+ add_selector('query');
return new_query_string;
};