diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 21:56:09 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-12 21:56:09 +0200 |
commit | 75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0 (patch) | |
tree | b5d4f73f0d96b71515cacc7ecce44e01d49b089e /phpBB/search.php | |
parent | 578ee077c114f63a6de0c277669ba91bd9f1219f (diff) | |
download | forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.gz forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.bz2 forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.tar.xz forums-75e5e2471e7b6b9e1d605f0c3cce5f1fbd373ac0.zip |
[ticket/14234] Get rid of undefined variables
PHPBB3-14234
Diffstat (limited to 'phpBB/search.php')
-rw-r--r-- | phpBB/search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/search.php b/phpBB/search.php index 13e842c7f8..d9e5d0557a 100644 --- a/phpBB/search.php +++ b/phpBB/search.php @@ -779,7 +779,7 @@ if ($keywords || $author || $author_id || $search_id || $submit) $result = $db->sql_query($sql); $result_topic_id = 0; - $rowset = array(); + $rowset = $attachments = $topic_tracking_info = array(); if ($show_results == 'topics') { |