aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/search.php
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2006-08-08 19:02:44 +0000
committerNils Adermann <naderman@naderman.de>2006-08-08 19:02:44 +0000
commitc69a6f7acd9c9c0b1293e6977fe1ec5b490725d4 (patch)
tree7b52ef2b8f7c9525cc039517d8fa98da57e8728d /phpBB/search.php
parent2ed25800c5ad5125740f574092098d284071300b (diff)
downloadforums-c69a6f7acd9c9c0b1293e6977fe1ec5b490725d4.tar
forums-c69a6f7acd9c9c0b1293e6977fe1ec5b490725d4.tar.gz
forums-c69a6f7acd9c9c0b1293e6977fe1ec5b490725d4.tar.bz2
forums-c69a6f7acd9c9c0b1293e6977fe1ec5b490725d4.tar.xz
forums-c69a6f7acd9c9c0b1293e6977fe1ec5b490725d4.zip
- fixed some problems with themes
- added support for {IMG_NAME_SRC}, {IMG_NAME_WIDTH} and {IMG_NAME_HEIGHT} - fulltext_native has to use group by in a few more quries git-svn-id: file:///svn/phpbb/trunk@6254 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/search.php')
-rw-r--r--phpBB/search.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/search.php b/phpBB/search.php
index 70a62373cb..185dcb0f50 100644
--- a/phpBB/search.php
+++ b/phpBB/search.php
@@ -465,12 +465,12 @@ if ($keywords || $author || $author_id || $search_id || $submit)
'S_SEARCH_ACTION' => $u_search,
'S_SHOW_TOPICS' => ($show_results == 'posts') ? false : true,
- 'GOTO_PAGE_IMG' => $user->img('icon_post_target', 'GOTO_PAGE'),
- 'NEWEST_POST_IMG' => $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
- 'REPORTED_IMG' => $user->img('icon_topic_reported', 'TOPIC_REPORTED'),
- 'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', 'TOPIC_UNAPPROVED'),
+ 'GOTO_PAGE_IMG' => $user->img('icon_post_target', 'GOTO_PAGE'),
+ 'NEWEST_POST_IMG' => $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
+ 'REPORTED_IMG' => $user->img('icon_topic_reported', 'TOPIC_REPORTED'),
+ 'UNAPPROVED_IMG' => $user->img('icon_topic_unapproved', 'TOPIC_UNAPPROVED'),
- 'U_SEARCH_WORDS' => append_sid("{$phpbb_root_path}search.$phpEx", "keywords=$u_hilit" . (($author) ? '&amp;author=' . urlencode($author) : '') . (($author_id) ? '&amp;author_id=' . $author_id : '') . $u_show_results))
+ 'U_SEARCH_WORDS' => $u_search)
);
if ($sql_where)