diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-28 19:07:24 +0530 |
---|---|---|
committer | unknown <Dhruv@Dhruv-XPS.(none)> | 2012-07-08 01:38:38 +0530 |
commit | 7a2d36a25eead0a836b7c79ec675a417a2ff5ea6 (patch) | |
tree | 8f00e25afd451c85d977f238f4771ccf5a386e9a /phpBB/search.php | |
parent | d37c9cab6bc8444685c642b4a6bce6108f054acc (diff) | |
download | forums-7a2d36a25eead0a836b7c79ec675a417a2ff5ea6.tar forums-7a2d36a25eead0a836b7c79ec675a417a2ff5ea6.tar.gz forums-7a2d36a25eead0a836b7c79ec675a417a2ff5ea6.tar.bz2 forums-7a2d36a25eead0a836b7c79ec675a417a2ff5ea6.tar.xz forums-7a2d36a25eead0a836b7c79ec675a417a2ff5ea6.zip |
[feature/postgresql-fulltext-search] use proper variable name
PHPBB3-9730
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 0187995f75..c93dbdfd34 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -597,10 +597,10 @@ if ($keywords || $author || $author_id || $search_id || $submit) $u_search .= ($return_chars != 300) ? '&ch=' . $return_chars : ''; // Check if search backend supports phrase search or not - $l_phrase_search_disabled = ''; + $phrase_search_disabled = ''; if (strpos(html_entity_decode($keywords), '"') !== false && isset($search->phrase_search)) { - $l_phrase_search_disabled = $search->phrase_search ? false : true; + $phrase_search_disabled = $search->phrase_search ? false : true; } $template->assign_vars(array( @@ -611,7 +611,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) 'PAGINATION' => generate_pagination($u_search, $total_match_count, $per_page, $start), 'PAGE_NUMBER' => on_page($total_match_count, $per_page, $start), - 'PHRASE_SEARCH_DISABLED' => $l_phrase_search_disabled, + 'PHRASE_SEARCH_DISABLED' => $phrase_search_disabled, 'TOTAL_MATCHES' => $total_match_count, 'SEARCH_IN_RESULTS' => ($search_id) ? false : true, |