| @@ -12,7 +12,8 @@ | ||
| 12 | 12 |  	header('Location: ' . $boardurl); | 
| 13 | 13 | } | 
| 14 | 14 | // Can't find it... just forget it. | 
| 15 | -else | |
| 15 | +else { | |
| 16 | 16 | exit; | 
| 17 | +} | |
| 17 | 18 | |
| 18 | 19 | ?> | 
| 19 | 20 | \ No newline at end of file | 
| @@ -1,9 +1,10 @@ | ||
| 1 | 1 | <?php | 
| 2 | 2 | |
| 3 | 3 | // Try to handle it with the upper level index.php. (it should know what to do.) | 
| 4 | -if (file_exists(dirname(dirname(__FILE__)) . '/index.php')) | |
| 4 | +if (file_exists(dirname(dirname(__FILE__)) . '/index.php')) { | |
| 5 | 5 | include (dirname(dirname(__FILE__)) . '/index.php'); | 
| 6 | -else | |
| 6 | +} else { | |
| 7 | 7 | exit; | 
| 8 | +} | |
| 8 | 9 | |
| 9 | 10 | ?> | 
| 10 | 11 | \ No newline at end of file | 
| @@ -583,8 +583,7 @@ discard block | ||
| 583 | 583 |  	{ | 
| 584 | 584 |  		$header = '<?php require("' . ($user_info['is_admin'] ? addslashes(realpath($boarddir . '/SSI.php')) : 'SSI.php') . '"); ?>' . "\n" . $header; | 
| 585 | 585 | return $header . template_homepage_sample1_html() . $footer; | 
| 586 | - } | |
| 587 | - else | |
| 586 | + } else | |
| 588 | 587 |  	{ | 
| 589 | 588 | echo $header; | 
| 590 | 589 | template_homepage_sample1_php(); | 
| @@ -599,9 +598,10 @@ discard block | ||
| 599 | 598 | |
| 600 | 599 | $topics = ssi_recentTopics(8, null, null, 'array'); | 
| 601 | 600 | |
| 602 | - foreach ($topics as $topic) | |
| 603 | - echo ' | |
| 601 | +	foreach ($topics as $topic) { | |
| 602 | + echo ' | |
| 604 | 603 | <li><a href="', $topic['href'], '">', $topic['subject'], '</a> ', $txt['by'], ' ', $topic['poster']['link'], '</li>'; | 
| 604 | + } | |
| 605 | 605 | |
| 606 | 606 | unset($topics); | 
| 607 | 607 | |
| @@ -186,8 +186,9 @@ discard block | ||
| 186 | 186 | |
| 187 | 187 | ########## Error-Catching ########## | 
| 188 | 188 | # Note: You shouldn't touch these settings. | 
| 189 | -if (file_exists(dirname(__FILE__) . '/db_last_error.php')) | |
| 189 | +if (file_exists(dirname(__FILE__) . '/db_last_error.php')) { | |
| 190 | 190 | include(dirname(__FILE__) . '/db_last_error.php'); | 
| 191 | +} | |
| 191 | 192 | |
| 192 | 193 | if (!isset($db_last_error)) | 
| 193 | 194 |  { | 
| @@ -202,11 +203,14 @@ discard block | ||
| 202 | 203 | } | 
| 203 | 204 | |
| 204 | 205 | # Make sure the paths are correct... at least try to fix them. | 
| 205 | -if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt')) | |
| 206 | +if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt')) { | |
| 206 | 207 | $boarddir = dirname(__FILE__); | 
| 207 | -if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources')) | |
| 208 | +} | |
| 209 | +if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources')) { | |
| 208 | 210 | $sourcedir = $boarddir . '/Sources'; | 
| 209 | -if (!file_exists($cachedir) && file_exists($boarddir . '/cache')) | |
| 211 | +} | |
| 212 | +if (!file_exists($cachedir) && file_exists($boarddir . '/cache')) { | |
| 210 | 213 | $cachedir = $boarddir . '/cache'; | 
| 214 | +} | |
| 211 | 215 | |
| 212 | 216 | ?> | 
| 213 | 217 | \ No newline at end of file | 
| @@ -39,7 +39,7 @@ | ||
| 39 | 39 | |
| 40 | 40 | foreach ($category['boards'] as $board) | 
| 41 | 41 | echo ' | 
| 42 | -									<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', $board['id'] == $context['current_board'] ? ' disabled' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level']-1) . '=> ' : '', $board['name'], '</option>'; | |
| 42 | +									<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', $board['id'] == $context['current_board'] ? ' disabled' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=> ' : '', $board['name'], '</option>'; | |
| 43 | 43 | echo ' | 
| 44 | 44 | </optgroup>'; | 
| 45 | 45 | } | 
| @@ -37,9 +37,10 @@ discard block | ||
| 37 | 37 | echo ' | 
| 38 | 38 | <optgroup label="', $category['name'], '">'; | 
| 39 | 39 | |
| 40 | - foreach ($category['boards'] as $board) | |
| 41 | - echo ' | |
| 40 | +		foreach ($category['boards'] as $board) { | |
| 41 | + echo ' | |
| 42 | 42 |  									<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', $board['id'] == $context['current_board'] ? ' disabled' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level']-1) . '=> ' : '', $board['name'], '</option>'; | 
| 43 | + } | |
| 43 | 44 | echo ' | 
| 44 | 45 | </optgroup>'; | 
| 45 | 46 | } | 
| @@ -70,9 +71,10 @@ discard block | ||
| 70 | 71 | </div><!-- .move_topic --> | 
| 71 | 72 | </div><!-- .windowbg -->'; | 
| 72 | 73 | |
| 73 | - if ($context['back_to_topic']) | |
| 74 | - echo ' | |
| 74 | +	if ($context['back_to_topic']) { | |
| 75 | + echo ' | |
| 75 | 76 | <input type="hidden" name="goback" value="1">'; | 
| 77 | + } | |
| 76 | 78 | |
| 77 | 79 | echo ' | 
| 78 | 80 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> | 
| @@ -125,10 +127,10 @@ discard block | ||
| 125 | 127 | <option value="86400">', $txt['two_months'], '</option> | 
| 126 | 128 | </select> | 
| 127 | 129 | </dd>'; | 
| 128 | - } | |
| 129 | - else | |
| 130 | - echo ' | |
| 130 | +	} else { | |
| 131 | + echo ' | |
| 131 | 132 | <input type="hidden" name="redirect_expires" value="0">'; | 
| 133 | + } | |
| 132 | 134 | |
| 133 | 135 | echo ' | 
| 134 | 136 | </dl> | 
| @@ -207,9 +209,10 @@ discard block | ||
| 207 | 209 | echo ' | 
| 208 | 210 | <optgroup label="', $cat['name'], '">'; | 
| 209 | 211 | |
| 210 | - foreach ($cat['boards'] as $board) | |
| 211 | - echo ' | |
| 212 | +			foreach ($cat['boards'] as $board) { | |
| 213 | + echo ' | |
| 212 | 214 |  								<option value="', $board['id'], '"', $board['selected'] ? ' selected' : '', '>', $board['child_level'] > 0 ? str_repeat('==', $board['child_level'] - 1) . '=>' : '', ' ', $board['name'], '</option>'; | 
| 215 | + } | |
| 213 | 216 | |
| 214 | 217 | echo ' | 
| 215 | 218 | </optgroup>'; | 
| @@ -220,9 +223,9 @@ discard block | ||
| 220 | 223 | <input type="submit" value="', $txt['go'], '" class="button"> | 
| 221 | 224 | </form>'; | 
| 222 | 225 | |
| 226 | +	} else { | |
| 227 | + echo $txt['target_below']; | |
| 223 | 228 | } | 
| 224 | - else | |
| 225 | - echo $txt['target_below']; | |
| 226 | 229 | |
| 227 | 230 | echo ' </h4> | 
| 228 | 231 | </div><!-- .title_bar -->'; | 
| @@ -240,12 +243,13 @@ discard block | ||
| 240 | 243 | |
| 241 | 244 |  		$merge_button = create_button('merge', 'merge', ''); | 
| 242 | 245 | |
| 243 | - foreach ($context['topics'] as $topic) | |
| 244 | - echo ' | |
| 246 | +		foreach ($context['topics'] as $topic) { | |
| 247 | + echo ' | |
| 245 | 248 | <li> | 
| 246 | 249 | <a href="', $scripturl, '?action=mergetopics;sa=options;board=', $context['current_board'], '.0;from=', $context['origin_topic'], ';to=', $topic['id'], ';', $context['session_var'], '=', $context['session_id'], '">', $merge_button, '</a> | 
| 247 | 250 | <a href="', $scripturl, '?topic=', $topic['id'], '.0" target="_blank" rel="noopener">', $topic['subject'], '</a> ', $txt['started_by'], ' ', $topic['poster']['link'], ' | 
| 248 | 251 | </li>'; | 
| 252 | + } | |
| 249 | 253 | |
| 250 | 254 | echo ' | 
| 251 | 255 | </ul> | 
| @@ -256,9 +260,10 @@ discard block | ||
| 256 | 260 | </div>'; | 
| 257 | 261 | } | 
| 258 | 262 | // Just a nice "There aren't any topics" message | 
| 259 | - else | |
| 260 | - echo ' | |
| 263 | +	else { | |
| 264 | + echo ' | |
| 261 | 265 | <div class="windowbg2">', $txt['topic_alert_none'], '</div>'; | 
| 266 | + } | |
| 262 | 267 | |
| 263 | 268 | echo ' | 
| 264 | 269 | <br> | 
| @@ -308,8 +313,8 @@ discard block | ||
| 308 | 313 | </thead> | 
| 309 | 314 | <tbody>'; | 
| 310 | 315 | |
| 311 | - foreach ($context['topics'] as $topic) | |
| 312 | - echo ' | |
| 316 | +	foreach ($context['topics'] as $topic) { | |
| 317 | + echo ' | |
| 313 | 318 | <tr class="windowbg"> | 
| 314 | 319 | <td> | 
| 315 | 320 | <input type="checkbox" name="topics[]" value="' . $topic['id'] . '" checked> | 
| @@ -329,6 +334,7 @@ discard block | ||
| 329 | 334 | <input type="checkbox" name="notifications[]" value="' . $topic['id'] . '" checked> | 
| 330 | 335 | </td> | 
| 331 | 336 | </tr>'; | 
| 337 | + } | |
| 332 | 338 | echo ' | 
| 333 | 339 | </tbody> | 
| 334 | 340 | </table> | 
| @@ -338,9 +344,10 @@ discard block | ||
| 338 | 344 | <legend>', $txt['merge_select_subject'], '</legend> | 
| 339 | 345 | <select name="subject" onchange="this.form.custom_subject.style.display = (this.options[this.selectedIndex].value != 0) ? \'none\': \'\' ;">'; | 
| 340 | 346 | |
| 341 | - foreach ($context['topics'] as $topic) | |
| 342 | - echo ' | |
| 347 | +	foreach ($context['topics'] as $topic) { | |
| 348 | + echo ' | |
| 343 | 349 | <option value="', $topic['id'], '"' . ($topic['selected'] ? ' selected' : '') . '>', $topic['subject'], '</option>'; | 
| 350 | + } | |
| 344 | 351 | echo ' | 
| 345 | 352 | <option value="0">', $txt['merge_custom_subject'], ':</option> | 
| 346 | 353 | </select> | 
| @@ -359,11 +366,12 @@ discard block | ||
| 359 | 366 | <legend>', $txt['merge_select_target_board'], '</legend> | 
| 360 | 367 | <ul>'; | 
| 361 | 368 | |
| 362 | - foreach ($context['boards'] as $board) | |
| 363 | - echo ' | |
| 369 | +		foreach ($context['boards'] as $board) { | |
| 370 | + echo ' | |
| 364 | 371 | <li> | 
| 365 | 372 | <input type="radio" name="board" value="' . $board['id'] . '"' . ($board['selected'] ? ' checked' : '') . '> ' . $board['name'] . ' | 
| 366 | 373 | </li>'; | 
| 374 | + } | |
| 367 | 375 | echo ' | 
| 368 | 376 | </ul> | 
| 369 | 377 | </fieldset>'; | 
| @@ -375,11 +383,12 @@ discard block | ||
| 375 | 383 | <legend>' . $txt['merge_select_poll'] . '</legend> | 
| 376 | 384 | <ul>'; | 
| 377 | 385 | |
| 378 | - foreach ($context['polls'] as $poll) | |
| 379 | - echo ' | |
| 386 | +		foreach ($context['polls'] as $poll) { | |
| 387 | + echo ' | |
| 380 | 388 | <li> | 
| 381 | 389 |  							<input type="radio" name="poll" value="' . $poll['id'] . '"' . ($poll['selected'] ? ' checked' : '') . '> ' . $poll['question'] . ' (' . $txt['topic'] . ': <a href="' . $scripturl . '?topic=' . $poll['topic']['id'] . '.0" target="_blank" rel="noopener">' . $poll['topic']['subject'] . '</a>) | 
| 382 | 390 | </li>'; | 
| 391 | + } | |
| 383 | 392 | echo ' | 
| 384 | 393 | <li> | 
| 385 | 394 |  							<input type="radio" name="poll" value="-1"> (' . $txt['merge_no_poll'] . ') | 
| @@ -24,8 +24,8 @@ discard block | ||
| 24 | 24 | <meta charset="', $context['character_set'], '"> | 
| 25 | 25 | <meta name="robots" content="noindex"> | 
| 26 | 26 | <title>', $context['page_title'], '</title> | 
| 27 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> | |
| 28 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> | |
| 27 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> | |
| 28 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> | |
| 29 | 29 | </head> | 
| 30 | 30 | <body id="help_popup"> | 
| 31 | 31 | <div class="windowbg description"> | 
| @@ -50,8 +50,8 @@ discard block | ||
| 50 | 50 | <title>', $txt['find_members'], '</title> | 
| 51 | 51 | <meta charset="', $context['character_set'], '"> | 
| 52 | 52 | <meta name="robots" content="noindex"> | 
| 53 | - <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'] ,'"> | |
| 54 | - <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'] ,'"></script> | |
| 53 | + <link rel="stylesheet" href="', $settings['theme_url'], '/css/index', $context['theme_variant'], '.css', $modSettings['browser_cache'], '"> | |
| 54 | + <script src="', $settings['default_theme_url'], '/scripts/script.js', $modSettings['browser_cache'], '"></script> | |
| 55 | 55 | <script> | 
| 56 | 56 | var membersAdded = []; | 
| 57 | 57 | function addMember(name) | 
| @@ -86,11 +86,12 @@ discard block | ||
| 86 | 86 | <span class="smalltext"><em>', $txt['find_wildcards'], '</em></span><br>'; | 
| 87 | 87 | |
| 88 | 88 | // Only offer to search for buddies if we have some! | 
| 89 | - if (!empty($context['show_buddies'])) | |
| 90 | - echo ' | |
| 89 | +	if (!empty($context['show_buddies'])) { | |
| 90 | + echo ' | |
| 91 | 91 | <span class="smalltext"> | 
| 92 | 92 | <label for="buddies"><input type="checkbox" name="buddies" id="buddies"', !empty($context['buddy_search']) ? ' checked' : '', '> ', $txt['find_buddies'], '</label> | 
| 93 | 93 | </span><br>'; | 
| 94 | + } | |
| 94 | 95 | |
| 95 | 96 | echo ' | 
| 96 | 97 | <div class="padding righttext"> | 
| @@ -105,20 +106,21 @@ discard block | ||
| 105 | 106 | <h3 class="catbg">', $txt['find_results'], '</h3> | 
| 106 | 107 | </div>'; | 
| 107 | 108 | |
| 108 | - if (empty($context['results'])) | |
| 109 | - echo ' | |
| 109 | +	if (empty($context['results'])) { | |
| 110 | + echo ' | |
| 110 | 111 | <p class="error">', $txt['find_no_results'], '</p>'; | 
| 111 | - else | |
| 112 | + } else | |
| 112 | 113 |  	{ | 
| 113 | 114 | echo ' | 
| 114 | 115 | <ul class="padding">'; | 
| 115 | 116 | |
| 116 | - foreach ($context['results'] as $result) | |
| 117 | - echo ' | |
| 117 | +		foreach ($context['results'] as $result) { | |
| 118 | + echo ' | |
| 118 | 119 | <li class="windowbg"> | 
| 119 | 120 | <a href="', $result['href'], '" target="_blank" rel="noopener"> <span class="generic_icons profile_sm"></span> | 
| 120 | 121 | <a href="javascript:void(0);" onclick="addMember(this.innerHTML); return false;">', $result['name'], '</a> | 
| 121 | 122 | </li>'; | 
| 123 | + } | |
| 122 | 124 | |
| 123 | 125 | echo ' | 
| 124 | 126 | </ul> | 
| @@ -134,11 +136,12 @@ discard block | ||
| 134 | 136 | <input type="hidden" name="quote" value="', $context['quote_results'] ? '1' : '0', '"> | 
| 135 | 137 | </form>'; | 
| 136 | 138 | |
| 137 | - if (empty($context['results'])) | |
| 138 | - echo ' | |
| 139 | +	if (empty($context['results'])) { | |
| 140 | + echo ' | |
| 139 | 141 | <script> | 
| 140 | 142 |  			document.getElementById("search").focus(); | 
| 141 | 143 | </script>'; | 
| 144 | + } | |
| 142 | 145 | |
| 143 | 146 | echo ' | 
| 144 | 147 | </body> | 
| @@ -162,9 +165,10 @@ discard block | ||
| 162 | 165 | <p>', $txt['manual_introduction'], '</p> | 
| 163 | 166 | <ul>'; | 
| 164 | 167 | |
| 165 | - foreach ($context['manual_sections'] as $section_id => $wiki_id) | |
| 166 | - echo ' | |
| 168 | +	foreach ($context['manual_sections'] as $section_id => $wiki_id) { | |
| 169 | + echo ' | |
| 167 | 170 | <li><a href="', $context['wiki_url'], '/', $context['wiki_prefix'], $wiki_id, ($txt['lang_dictionary'] != 'en' ? '/' . $txt['lang_dictionary'] : ''), '" target="_blank" rel="noopener">', $txt['manual_section_' . $section_id . '_title'], '</a> - ', $txt['manual_section_' . $section_id . '_desc'], '</li>'; | 
| 171 | + } | |
| 168 | 172 | |
| 169 | 173 | echo ' | 
| 170 | 174 | </ul> | 
| @@ -180,8 +184,8 @@ discard block | ||
| 180 | 184 |  { | 
| 181 | 185 | global $txt, $context, $modSettings; | 
| 182 | 186 | |
| 183 | - if (!empty($modSettings['requireAgreement'])) | |
| 184 | - echo ' | |
| 187 | +	if (!empty($modSettings['requireAgreement'])) { | |
| 188 | + echo ' | |
| 185 | 189 | <div class="cat_bar"> | 
| 186 | 190 | <h3 class="catbg"> | 
| 187 | 191 | ', $txt['terms_and_rules'], ' - ', $context['forum_name_html_safe'], ' | 
| @@ -190,11 +194,12 @@ discard block | ||
| 190 | 194 | <div class="roundframe"> | 
| 191 | 195 | ', $context['agreement'], ' | 
| 192 | 196 | </div>'; | 
| 193 | - else | |
| 194 | - echo ' | |
| 197 | +	} else { | |
| 198 | + echo ' | |
| 195 | 199 | <div class="noticebox"> | 
| 196 | 200 | ', $txt['agreement_disabled'], ' | 
| 197 | 201 | </div>'; | 
| 198 | -} | |
| 202 | + } | |
| 203 | + } | |
| 199 | 204 | |
| 200 | 205 | ?> | 
| 201 | 206 | \ No newline at end of file | 
| @@ -101,8 +101,8 @@ discard block | ||
| 101 | 101 | </div> | 
| 102 | 102 | <ul id="messages_not_selected" class="split_messages smalltext">'; | 
| 103 | 103 | |
| 104 | - foreach ($context['not_selected']['messages'] as $message) | |
| 105 | - echo ' | |
| 104 | +	foreach ($context['not_selected']['messages'] as $message) { | |
| 105 | + echo ' | |
| 106 | 106 | <li class="windowbg" id="not_selected_', $message['id'], '"> | 
| 107 | 107 | <div class="message_header"> | 
| 108 | 108 | <a class="split_icon floatright" href="', $scripturl, '?action=splittopics;sa=selectTopics;subname=', $context['topic']['subject'], ';topic=', $context['topic']['id'], '.', $context['not_selected']['start'], ';start2=', $context['selected']['start'], ';move=down;msg=', $message['id'], '" onclick="return select(\'down\', ', $message['id'], ');"><span class="generic_icons split_sel" title="->"></span></a> | 
| @@ -111,6 +111,7 @@ discard block | ||
| 111 | 111 | </div> | 
| 112 | 112 | <div class="post">', $message['body'], '</div> | 
| 113 | 113 | </li>'; | 
| 114 | + } | |
| 114 | 115 | |
| 115 | 116 | echo ' | 
| 116 | 117 | <li class="dummy"> | 
| @@ -130,8 +131,8 @@ discard block | ||
| 130 | 131 | </div> | 
| 131 | 132 | <ul id="messages_selected" class="split_messages smalltext">'; | 
| 132 | 133 | |
| 133 | - if (!empty($context['selected']['messages'])) | |
| 134 | - foreach ($context['selected']['messages'] as $message) | |
| 134 | +	if (!empty($context['selected']['messages'])) { | |
| 135 | + foreach ($context['selected']['messages'] as $message) | |
| 135 | 136 | echo ' | 
| 136 | 137 | <li class="windowbg" id="selected_', $message['id'], '"> | 
| 137 | 138 | <div class="message_header"> | 
| @@ -141,6 +142,7 @@ discard block | ||
| 141 | 142 | </div> | 
| 142 | 143 | <div class="post">', $message['body'], '</div> | 
| 143 | 144 | </li>'; | 
| 145 | + } | |
| 144 | 146 | |
| 145 | 147 | echo ' | 
| 146 | 148 | <li class="dummy"> | 
| @@ -181,14 +181,14 @@ discard block | ||
| 181 | 181 |  		{ | 
| 182 | 182 | collapsedDiv.show(\'slow\'); | 
| 183 | 183 | icon.removeClass(\'toggle_down\').addClass(\'toggle_up\'); | 
| 184 | - icon.prop(\'title\', '. JavaScriptEscape($txt['hide']) .'); | |
| 184 | + icon.prop(\'title\', '. JavaScriptEscape($txt['hide']) . '); | |
| 185 | 185 | } | 
| 186 | 186 | |
| 187 | 187 | else | 
| 188 | 188 |  		{ | 
| 189 | 189 | collapsedDiv.hide(\'slow\'); | 
| 190 | 190 | icon.removeClass(\'toggle_up\').addClass(\'toggle_down\'); | 
| 191 | - icon.prop(\'title\', '. JavaScriptEscape($txt['show']) .'); | |
| 191 | + icon.prop(\'title\', '. JavaScriptEscape($txt['show']) . '); | |
| 192 | 192 | } | 
| 193 | 193 | |
| 194 | 194 | });', true); | 
| @@ -641,7 +641,7 @@ discard block | ||
| 641 | 641 | |
| 642 | 642 | // Setup the correct template, even though I'll admit we ain't downloading ;) | 
| 643 | 643 | $context['sub_template'] = 'downloaded'; | 
| 644 | -	$allowext = array('.zip','.tgz','.gz'); | |
| 644 | +	$allowext = array('.zip', '.tgz', '.gz'); | |
| 645 | 645 | // @todo Use FTP if the Packages directory is not writable. | 
| 646 | 646 | |
| 647 | 647 | // Check the file was even sent! | 
| @@ -653,13 +653,13 @@ discard block | ||
| 653 | 653 | // Make sure it has a sane filename. | 
| 654 | 654 |  	$_FILES['package']['name'] = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $_FILES['package']['name']); | 
| 655 | 655 | $extension = substr(strrchr(strtolower($_FILES['package']['name']), '.'), 0); | 
| 656 | - if(!in_array($extension, $allowext)) | |
| 656 | + if (!in_array($extension, $allowext)) | |
| 657 | 657 |  	{ | 
| 658 | 658 |  		fatal_lang_error('package_upload_error_supports', false, array('zip, tgz, tar.gz')); | 
| 659 | 659 | } | 
| 660 | 660 | |
| 661 | 661 | // We only need the filename... | 
| 662 | - $extension = ($extension == '.gz') ? '.tar.gz' : $extension ; | |
| 662 | + $extension = ($extension == '.gz') ? '.tar.gz' : $extension; | |
| 663 | 663 | $packageName = time() . $extension; | 
| 664 | 664 | |
| 665 | 665 | // Setup the destination and throw an error if the file is already there! | 
| @@ -13,8 +13,9 @@ discard block | ||
| 13 | 13 | * @version 2.1 Beta 4 | 
| 14 | 14 | */ | 
| 15 | 15 | |
| 16 | -if (!defined('SMF')) | |
| 16 | +if (!defined('SMF')) { | |
| 17 | 17 |  	die('No direct access...'); | 
| 18 | +} | |
| 18 | 19 | |
| 19 | 20 | /** | 
| 20 | 21 | * Browse the list of package servers, add servers... | 
| @@ -43,13 +44,15 @@ discard block | ||
| 43 | 44 | ); | 
| 44 | 45 | |
| 45 | 46 | // Now let's decide where we are taking this... | 
| 46 | - if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) | |
| 47 | - $context['sub_action'] = $_REQUEST['sa']; | |
| 47 | +	if (isset($_REQUEST['sa']) && isset($subActions[$_REQUEST['sa']])) { | |
| 48 | + $context['sub_action'] = $_REQUEST['sa']; | |
| 49 | + } | |
| 48 | 50 | // We need to support possible old javascript links... | 
| 49 | - elseif (isset($_GET['pgdownload'])) | |
| 50 | - $context['sub_action'] = 'download'; | |
| 51 | - else | |
| 52 | - $context['sub_action'] = 'servers'; | |
| 51 | +	elseif (isset($_GET['pgdownload'])) { | |
| 52 | + $context['sub_action'] = 'download'; | |
| 53 | +	} else { | |
| 54 | + $context['sub_action'] = 'servers'; | |
| 55 | + } | |
| 53 | 56 | |
| 54 | 57 | // We need to force the "Download" tab as selected. | 
| 55 | 58 | $context['menu_data_' . $context['admin_menu_id']]['current_subsection'] = 'packageget'; | 
| @@ -141,17 +144,19 @@ discard block | ||
| 141 | 144 |  			{ | 
| 142 | 145 | require_once($sourcedir . '/Class-Package.php'); | 
| 143 | 146 | $ftp = new ftp_connection(null); | 
| 147 | +			} elseif ($ftp->error !== false && !isset($ftp_error)) { | |
| 148 | + $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; | |
| 144 | 149 | } | 
| 145 | - elseif ($ftp->error !== false && !isset($ftp_error)) | |
| 146 | - $ftp_error = $ftp->last_message === null ? '' : $ftp->last_message; | |
| 147 | 150 | |
| 148 | 151 | list ($username, $detect_path, $found_path) = $ftp->detect_path($packagesdir); | 
| 149 | 152 | |
| 150 | - if ($found_path || !isset($_POST['ftp_path'])) | |
| 151 | - $_POST['ftp_path'] = $detect_path; | |
| 153 | +			if ($found_path || !isset($_POST['ftp_path'])) { | |
| 154 | + $_POST['ftp_path'] = $detect_path; | |
| 155 | + } | |
| 152 | 156 | |
| 153 | - if (!isset($_POST['ftp_username'])) | |
| 154 | - $_POST['ftp_username'] = $username; | |
| 157 | +			if (!isset($_POST['ftp_username'])) { | |
| 158 | + $_POST['ftp_username'] = $username; | |
| 159 | + } | |
| 155 | 160 | |
| 156 | 161 | $context['package_ftp'] = array( | 
| 157 | 162 | 'server' => isset($_POST['ftp_server']) ? $_POST['ftp_server'] : (isset($modSettings['package_server']) ? $modSettings['package_server'] : 'localhost'), | 
| @@ -160,8 +165,7 @@ discard block | ||
| 160 | 165 | 'path' => $_POST['ftp_path'], | 
| 161 | 166 | 'error' => empty($ftp_error) ? null : $ftp_error, | 
| 162 | 167 | ); | 
| 163 | - } | |
| 164 | - else | |
| 168 | + } else | |
| 165 | 169 |  		{ | 
| 166 | 170 | $context['package_download_broken'] = false; | 
| 167 | 171 | |
| @@ -203,8 +207,9 @@ discard block | ||
| 203 | 207 | |
| 204 | 208 | if (isset($_GET['server'])) | 
| 205 | 209 |  	{ | 
| 206 | - if ($_GET['server'] == '') | |
| 207 | -			redirectexit('action=admin;area=packages;get'); | |
| 210 | +		if ($_GET['server'] == '') { | |
| 211 | +					redirectexit('action=admin;area=packages;get'); | |
| 212 | + } | |
| 208 | 213 | |
| 209 | 214 | $server = (int) $_GET['server']; | 
| 210 | 215 | |
| @@ -222,17 +227,18 @@ discard block | ||
| 222 | 227 | $smcFunc['db_free_result']($request); | 
| 223 | 228 | |
| 224 | 229 | // If the server does not exist, dump out. | 
| 225 | - if (empty($url)) | |
| 226 | -			fatal_lang_error('couldnt_connect', false); | |
| 230 | +		if (empty($url)) { | |
| 231 | +					fatal_lang_error('couldnt_connect', false); | |
| 232 | + } | |
| 227 | 233 | |
| 228 | 234 | // If there is a relative link, append to the stored server url. | 
| 229 | - if (isset($_GET['relative'])) | |
| 230 | - $url = $url . (substr($url, -1) == '/' ? '' : '/') . $_GET['relative']; | |
| 235 | +		if (isset($_GET['relative'])) { | |
| 236 | + $url = $url . (substr($url, -1) == '/' ? '' : '/') . $_GET['relative']; | |
| 237 | + } | |
| 231 | 238 | |
| 232 | 239 | // Clear any "absolute" URL. Since "server" is present, "absolute" is garbage. | 
| 233 | 240 | unset($_GET['absolute']); | 
| 234 | - } | |
| 235 | - elseif (isset($_GET['absolute']) && $_GET['absolute'] != '') | |
| 241 | + } elseif (isset($_GET['absolute']) && $_GET['absolute'] != '') | |
| 236 | 242 |  	{ | 
| 237 | 243 | // Initialize the requried variables. | 
| 238 | 244 | $server = ''; | 
| @@ -256,16 +262,19 @@ discard block | ||
| 256 | 262 | } | 
| 257 | 263 | } | 
| 258 | 264 | // Minimum required parameter did not exist so dump out. | 
| 259 | - else | |
| 260 | -		fatal_lang_error('couldnt_connect', false); | |
| 265 | +	else { | |
| 266 | +			fatal_lang_error('couldnt_connect', false); | |
| 267 | + } | |
| 261 | 268 | |
| 262 | 269 | // Attempt to connect. If unsuccessful... try the URL. | 
| 263 | - if (!isset($_GET['package']) || file_exists($_GET['package'])) | |
| 264 | - $_GET['package'] = $url . '/packages.xml?language=' . $context['user']['language']; | |
| 270 | +	if (!isset($_GET['package']) || file_exists($_GET['package'])) { | |
| 271 | + $_GET['package'] = $url . '/packages.xml?language=' . $context['user']['language']; | |
| 272 | + } | |
| 265 | 273 | |
| 266 | 274 | // Check to be sure the packages.xml file actually exists where it is should be... or dump out. | 
| 267 | - if ((isset($_GET['absolute']) || isset($_GET['relative'])) && !url_exists($_GET['package'])) | |
| 268 | -		fatal_lang_error('packageget_unable', false, array($url . '/index.php')); | |
| 275 | +	if ((isset($_GET['absolute']) || isset($_GET['relative'])) && !url_exists($_GET['package'])) { | |
| 276 | +			fatal_lang_error('packageget_unable', false, array($url . '/index.php')); | |
| 277 | + } | |
| 269 | 278 | |
| 270 | 279 | // Might take some time. | 
| 271 | 280 | @set_time_limit(600); | 
| @@ -275,8 +284,9 @@ discard block | ||
| 275 | 284 | $listing = new xmlArray(fetch_web_data($_GET['package']), true); | 
| 276 | 285 | |
| 277 | 286 | // Errm.... empty file? Try the URL.... | 
| 278 | -	if (!$listing->exists('package-list')) | |
| 279 | -		fatal_lang_error('packageget_unable', false, array($url . '/index.php')); | |
| 287 | +	if (!$listing->exists('package-list')) { | |
| 288 | +			fatal_lang_error('packageget_unable', false, array($url . '/index.php')); | |
| 289 | + } | |
| 280 | 290 | |
| 281 | 291 | // List out the packages... | 
| 282 | 292 | $context['package_list'] = array(); | 
| @@ -284,8 +294,9 @@ discard block | ||
| 284 | 294 |  	$listing = $listing->path('package-list[0]'); | 
| 285 | 295 | |
| 286 | 296 | // Use the package list's name if it exists. | 
| 287 | -	if ($listing->exists('list-title')) | |
| 288 | -		$name = $smcFunc['htmlspecialchars']($listing->fetch('list-title')); | |
| 297 | +	if ($listing->exists('list-title')) { | |
| 298 | +			$name = $smcFunc['htmlspecialchars']($listing->fetch('list-title')); | |
| 299 | + } | |
| 289 | 300 | |
| 290 | 301 | // Pick the correct template. | 
| 291 | 302 | $context['sub_template'] = 'package_list'; | 
| @@ -300,28 +311,32 @@ discard block | ||
| 300 | 311 | |
| 301 | 312 | $installed_mods = array(); | 
| 302 | 313 | // Look through the list of installed mods... | 
| 303 | - foreach ($instmods as $installed_mod) | |
| 304 | - $installed_mods[$installed_mod['package_id']] = $installed_mod['version']; | |
| 314 | +	foreach ($instmods as $installed_mod) { | |
| 315 | + $installed_mods[$installed_mod['package_id']] = $installed_mod['version']; | |
| 316 | + } | |
| 305 | 317 | |
| 306 | 318 | // Get default author and email if they exist. | 
| 307 | 319 |  	if ($listing->exists('default-author')) | 
| 308 | 320 |  	{ | 
| 309 | 321 |  		$default_author = $smcFunc['htmlspecialchars']($listing->fetch('default-author')); | 
| 310 | -		if ($listing->exists('default-author/@email') && filter_var($listing->fetch('default-author/@email'), FILTER_VALIDATE_EMAIL)) | |
| 311 | -			$default_email = $smcFunc['htmlspecialchars']($listing->fetch('default-author/@email')); | |
| 322 | +		if ($listing->exists('default-author/@email') && filter_var($listing->fetch('default-author/@email'), FILTER_VALIDATE_EMAIL)) { | |
| 323 | +					$default_email = $smcFunc['htmlspecialchars']($listing->fetch('default-author/@email')); | |
| 324 | + } | |
| 312 | 325 | } | 
| 313 | 326 | |
| 314 | 327 | // Get default web site if it exists. | 
| 315 | 328 |  	if ($listing->exists('default-website')) | 
| 316 | 329 |  	{ | 
| 317 | 330 |  		$default_website = $smcFunc['htmlspecialchars']($listing->fetch('default-website')); | 
| 318 | -		if ($listing->exists('default-website/@title')) | |
| 319 | -			$default_title = $smcFunc['htmlspecialchars']($listing->fetch('default-website/@title')); | |
| 331 | +		if ($listing->exists('default-website/@title')) { | |
| 332 | +					$default_title = $smcFunc['htmlspecialchars']($listing->fetch('default-website/@title')); | |
| 333 | + } | |
| 320 | 334 | } | 
| 321 | 335 | |
| 322 | 336 |  	$the_version = strtr($forum_version, array('SMF ' => '')); | 
| 323 | - if (!empty($_SESSION['version_emulate'])) | |
| 324 | - $the_version = $_SESSION['version_emulate']; | |
| 337 | +	if (!empty($_SESSION['version_emulate'])) { | |
| 338 | + $the_version = $_SESSION['version_emulate']; | |
| 339 | + } | |
| 325 | 340 | |
| 326 | 341 | $packageNum = 0; | 
| 327 | 342 | $packageSection = 0; | 
| @@ -342,11 +357,13 @@ discard block | ||
| 342 | 357 | 'type' => $thisPackage->name(), | 
| 343 | 358 | ); | 
| 344 | 359 | |
| 345 | -			if (in_array($package['type'], array('title', 'text'))) | |
| 346 | -				$context['package_list'][$packageSection][$package['type']] = $smcFunc['htmlspecialchars']($thisPackage->fetch('.')); | |
| 360 | +			if (in_array($package['type'], array('title', 'text'))) { | |
| 361 | +							$context['package_list'][$packageSection][$package['type']] = $smcFunc['htmlspecialchars']($thisPackage->fetch('.')); | |
| 362 | + } | |
| 347 | 363 | // It's a Title, Heading, Rule or Text. | 
| 348 | -			elseif (in_array($package['type'], array('heading', 'rule'))) | |
| 349 | -				$package['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('.')); | |
| 364 | +			elseif (in_array($package['type'], array('heading', 'rule'))) { | |
| 365 | +							$package['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('.')); | |
| 366 | + } | |
| 350 | 367 | // It's a Remote link. | 
| 351 | 368 | elseif ($package['type'] == 'remote') | 
| 352 | 369 |  			{ | 
| @@ -354,20 +371,21 @@ discard block | ||
| 354 | 371 | |
| 355 | 372 |  				if ($remote_type == 'relative' && substr($thisPackage->fetch('@href'), 0, 7) != 'http://' && substr($thisPackage->fetch('@href'), 0, 8) != 'https://') | 
| 356 | 373 |  				{ | 
| 357 | - if (isset($_GET['absolute'])) | |
| 358 | - $current_url = $_GET['absolute'] . '/'; | |
| 359 | - elseif (isset($_GET['relative'])) | |
| 360 | - $current_url = $_GET['relative'] . '/'; | |
| 361 | - else | |
| 362 | - $current_url = ''; | |
| 374 | +					if (isset($_GET['absolute'])) { | |
| 375 | + $current_url = $_GET['absolute'] . '/'; | |
| 376 | +					} elseif (isset($_GET['relative'])) { | |
| 377 | + $current_url = $_GET['relative'] . '/'; | |
| 378 | +					} else { | |
| 379 | + $current_url = ''; | |
| 380 | + } | |
| 363 | 381 | |
| 364 | 382 |  					$current_url .= $thisPackage->fetch('@href'); | 
| 365 | - if (isset($_GET['absolute'])) | |
| 366 | - $package['href'] = $scripturl . '?action=admin;area=packages;get;sa=browse;absolute=' . $current_url; | |
| 367 | - else | |
| 368 | - $package['href'] = $scripturl . '?action=admin;area=packages;get;sa=browse;server=' . $context['package_server'] . ';relative=' . $current_url; | |
| 369 | - } | |
| 370 | - else | |
| 383 | +					if (isset($_GET['absolute'])) { | |
| 384 | + $package['href'] = $scripturl . '?action=admin;area=packages;get;sa=browse;absolute=' . $current_url; | |
| 385 | +					} else { | |
| 386 | + $package['href'] = $scripturl . '?action=admin;area=packages;get;sa=browse;server=' . $context['package_server'] . ';relative=' . $current_url; | |
| 387 | + } | |
| 388 | + } else | |
| 371 | 389 |  				{ | 
| 372 | 390 |  					$current_url = $thisPackage->fetch('@href'); | 
| 373 | 391 | $package['href'] = $scripturl . '?action=admin;area=packages;get;sa=browse;absolute=' . $current_url; | 
| @@ -379,25 +397,28 @@ discard block | ||
| 379 | 397 | // It's a package... | 
| 380 | 398 | else | 
| 381 | 399 |  			{ | 
| 382 | - if (isset($_GET['absolute'])) | |
| 383 | - $current_url = $_GET['absolute'] . '/'; | |
| 384 | - elseif (isset($_GET['relative'])) | |
| 385 | - $current_url = $_GET['relative'] . '/'; | |
| 386 | - else | |
| 387 | - $current_url = ''; | |
| 400 | +				if (isset($_GET['absolute'])) { | |
| 401 | + $current_url = $_GET['absolute'] . '/'; | |
| 402 | +				} elseif (isset($_GET['relative'])) { | |
| 403 | + $current_url = $_GET['relative'] . '/'; | |
| 404 | +				} else { | |
| 405 | + $current_url = ''; | |
| 406 | + } | |
| 388 | 407 | |
| 389 | 408 | $server_att = $server != '' ? ';server=' . $server : ''; | 
| 390 | 409 | |
| 391 | 410 | $package += $thisPackage->to_array(); | 
| 392 | 411 | |
| 393 | - if (isset($package['website'])) | |
| 394 | - unset($package['website']); | |
| 412 | +				if (isset($package['website'])) { | |
| 413 | + unset($package['website']); | |
| 414 | + } | |
| 395 | 415 | $package['author'] = array(); | 
| 396 | 416 | |
| 397 | - if ($package['description'] == '') | |
| 398 | - $package['description'] = $txt['package_no_description']; | |
| 399 | - else | |
| 400 | -					$package['description'] = parse_bbc(preg_replace('~\[[/]?html\]~i', '', $smcFunc['htmlspecialchars']($package['description']))); | |
| 417 | +				if ($package['description'] == '') { | |
| 418 | + $package['description'] = $txt['package_no_description']; | |
| 419 | +				} else { | |
| 420 | +									$package['description'] = parse_bbc(preg_replace('~\[[/]?html\]~i', '', $smcFunc['htmlspecialchars']($package['description']))); | |
| 421 | + } | |
| 401 | 422 | |
| 402 | 423 | $package['is_installed'] = isset($installed_mods[$package['id']]); | 
| 403 | 424 | $package['is_current'] = $package['is_installed'] && ($installed_mods[$package['id']] == $package['version']); | 
| @@ -406,12 +427,14 @@ discard block | ||
| 406 | 427 | // This package is either not installed, or installed but old. Is it supported on this version of SMF? | 
| 407 | 428 | if (!$package['is_installed'] || (!$package['is_current'] && !$package['is_newer'])) | 
| 408 | 429 |  				{ | 
| 409 | -					if ($thisPackage->exists('version/@for')) | |
| 410 | -						$package['can_install'] = matchPackageVersion($the_version, $thisPackage->fetch('version/@for')); | |
| 430 | +					if ($thisPackage->exists('version/@for')) { | |
| 431 | +											$package['can_install'] = matchPackageVersion($the_version, $thisPackage->fetch('version/@for')); | |
| 432 | + } | |
| 411 | 433 | } | 
| 412 | 434 | // Okay, it's already installed AND up to date. | 
| 413 | - else | |
| 414 | - $package['can_install'] = false; | |
| 435 | +				else { | |
| 436 | + $package['can_install'] = false; | |
| 437 | + } | |
| 415 | 438 | |
| 416 | 439 | $already_exists = getPackageInfo(basename($package['filename'])); | 
| 417 | 440 | $package['download_conflict'] = is_array($already_exists) && $already_exists['id'] == $package['id'] && $already_exists['version'] != $package['version']; | 
| @@ -423,40 +446,44 @@ discard block | ||
| 423 | 446 | |
| 424 | 447 |  				if ($thisPackage->exists('author') || isset($default_author)) | 
| 425 | 448 |  				{ | 
| 426 | -					if ($thisPackage->exists('author/@email') && filter_var($thisPackage->fetch('author/@email'), FILTER_VALIDATE_EMAIL)) | |
| 427 | -						$package['author']['email'] = $thisPackage->fetch('author/@email'); | |
| 428 | - elseif (isset($default_email)) | |
| 429 | - $package['author']['email'] = $default_email; | |
| 430 | - | |
| 431 | -					if ($thisPackage->exists('author') && $thisPackage->fetch('author') != '') | |
| 432 | -						$package['author']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('author')); | |
| 433 | - else | |
| 434 | - $package['author']['name'] = $default_author; | |
| 435 | - | |
| 436 | - if (!empty($package['author']['email'])) | |
| 437 | - $package['author']['link'] = '<a href="mailto:' . $package['author']['email'] . '">' . $package['author']['name'] . '</a>'; | |
| 449 | +					if ($thisPackage->exists('author/@email') && filter_var($thisPackage->fetch('author/@email'), FILTER_VALIDATE_EMAIL)) { | |
| 450 | +											$package['author']['email'] = $thisPackage->fetch('author/@email'); | |
| 451 | +					} elseif (isset($default_email)) { | |
| 452 | + $package['author']['email'] = $default_email; | |
| 453 | + } | |
| 454 | + | |
| 455 | +					if ($thisPackage->exists('author') && $thisPackage->fetch('author') != '') { | |
| 456 | +											$package['author']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('author')); | |
| 457 | +					} else { | |
| 458 | + $package['author']['name'] = $default_author; | |
| 459 | + } | |
| 460 | + | |
| 461 | +					if (!empty($package['author']['email'])) { | |
| 462 | + $package['author']['link'] = '<a href="mailto:' . $package['author']['email'] . '">' . $package['author']['name'] . '</a>'; | |
| 463 | + } | |
| 438 | 464 | } | 
| 439 | 465 | |
| 440 | 466 |  				if ($thisPackage->exists('website') || isset($default_website)) | 
| 441 | 467 |  				{ | 
| 442 | -					if ($thisPackage->exists('website') && $thisPackage->exists('website/@title')) | |
| 443 | -						$package['author']['website']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('website/@title')); | |
| 444 | - elseif (isset($default_title)) | |
| 445 | - $package['author']['website']['name'] = $default_title; | |
| 446 | -					elseif ($thisPackage->exists('website')) | |
| 447 | -						$package['author']['website']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('website')); | |
| 448 | - else | |
| 449 | - $package['author']['website']['name'] = $default_website; | |
| 450 | - | |
| 451 | -					if ($thisPackage->exists('website') && $thisPackage->fetch('website') != '') | |
| 452 | -						$authorhompage = $smcFunc['htmlspecialchars']($thisPackage->fetch('website')); | |
| 453 | - else | |
| 454 | - $authorhompage = $default_website; | |
| 468 | +					if ($thisPackage->exists('website') && $thisPackage->exists('website/@title')) { | |
| 469 | +											$package['author']['website']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('website/@title')); | |
| 470 | +					} elseif (isset($default_title)) { | |
| 471 | + $package['author']['website']['name'] = $default_title; | |
| 472 | +					} elseif ($thisPackage->exists('website')) { | |
| 473 | +											$package['author']['website']['name'] = $smcFunc['htmlspecialchars']($thisPackage->fetch('website')); | |
| 474 | +					} else { | |
| 475 | + $package['author']['website']['name'] = $default_website; | |
| 476 | + } | |
| 477 | + | |
| 478 | +					if ($thisPackage->exists('website') && $thisPackage->fetch('website') != '') { | |
| 479 | +											$authorhompage = $smcFunc['htmlspecialchars']($thisPackage->fetch('website')); | |
| 480 | +					} else { | |
| 481 | + $authorhompage = $default_website; | |
| 482 | + } | |
| 455 | 483 | |
| 456 | 484 | $package['author']['website']['href'] = $authorhompage; | 
| 457 | 485 | $package['author']['website']['link'] = '<a href="' . $authorhompage . '">' . $package['author']['website']['name'] . '</a>'; | 
| 458 | - } | |
| 459 | - else | |
| 486 | + } else | |
| 460 | 487 |  				{ | 
| 461 | 488 | $package['author']['website']['href'] = ''; | 
| 462 | 489 | $package['author']['website']['link'] = ''; | 
| @@ -472,11 +499,13 @@ discard block | ||
| 472 | 499 |  			$packageNum = in_array($package['type'], array('title', 'heading', 'text', 'remote', 'rule')) ? 0 : $packageNum + 1; | 
| 473 | 500 | $package['count'] = $packageNum; | 
| 474 | 501 | |
| 475 | -			if (!in_array($package['type'], array('title', 'text'))) | |
| 476 | - $context['package_list'][$packageSection]['items'][] = $package; | |
| 502 | +			if (!in_array($package['type'], array('title', 'text'))) { | |
| 503 | + $context['package_list'][$packageSection]['items'][] = $package; | |
| 504 | + } | |
| 477 | 505 | |
| 478 | - if ($package['count'] > 1) | |
| 479 | - $context['list_type'] = 'ol'; | |
| 506 | +			if ($package['count'] > 1) { | |
| 507 | + $context['list_type'] = 'ol'; | |
| 508 | + } | |
| 480 | 509 | } | 
| 481 | 510 | |
| 482 | 511 | $packageSection++; | 
| @@ -489,8 +518,9 @@ discard block | ||
| 489 | 518 |  	{ | 
| 490 | 519 | foreach ($packageSection['items'] as $i => $package) | 
| 491 | 520 |  		{ | 
| 492 | - if ($package['count'] == 0 || isset($package['can_install'])) | |
| 493 | - continue; | |
| 521 | +			if ($package['count'] == 0 || isset($package['can_install'])) { | |
| 522 | + continue; | |
| 523 | + } | |
| 494 | 524 | |
| 495 | 525 | $context['package_list'][$ps_id]['items'][$i]['can_install'] = false; | 
| 496 | 526 | |
| @@ -539,8 +569,9 @@ discard block | ||
| 539 | 569 |  	checkSession('get'); | 
| 540 | 570 | |
| 541 | 571 | // To download something, we need a valid server or url. | 
| 542 | - if (empty($_GET['server']) && (!empty($_GET['get']) && !empty($_REQUEST['package']))) | |
| 543 | -		fatal_lang_error('package_get_error_is_zero', false); | |
| 572 | +	if (empty($_GET['server']) && (!empty($_GET['get']) && !empty($_REQUEST['package']))) { | |
| 573 | +			fatal_lang_error('package_get_error_is_zero', false); | |
| 574 | + } | |
| 544 | 575 | |
| 545 | 576 | if (isset($_GET['server'])) | 
| 546 | 577 |  	{ | 
| @@ -560,22 +591,23 @@ discard block | ||
| 560 | 591 | $smcFunc['db_free_result']($request); | 
| 561 | 592 | |
| 562 | 593 | // If server does not exist then dump out. | 
| 563 | - if (empty($url)) | |
| 564 | -			fatal_lang_error('couldnt_connect', false); | |
| 594 | +		if (empty($url)) { | |
| 595 | +					fatal_lang_error('couldnt_connect', false); | |
| 596 | + } | |
| 565 | 597 | |
| 566 | 598 | $url = $url . '/'; | 
| 567 | - } | |
| 568 | - else | |
| 599 | + } else | |
| 569 | 600 |  	{ | 
| 570 | 601 | // Initialize the requried variables. | 
| 571 | 602 | $server = ''; | 
| 572 | 603 | $url = ''; | 
| 573 | 604 | } | 
| 574 | 605 | |
| 575 | - if (isset($_REQUEST['byurl']) && !empty($_POST['filename'])) | |
| 576 | - $package_name = basename($_REQUEST['filename']); | |
| 577 | - else | |
| 578 | - $package_name = basename($_REQUEST['package']); | |
| 606 | +	if (isset($_REQUEST['byurl']) && !empty($_POST['filename'])) { | |
| 607 | + $package_name = basename($_REQUEST['filename']); | |
| 608 | +	} else { | |
| 609 | + $package_name = basename($_REQUEST['package']); | |
| 610 | + } | |
| 579 | 611 | |
| 580 | 612 | if (isset($_REQUEST['conflict']) || (isset($_REQUEST['auto']) && file_exists($packagesdir . '/' . $package_name))) | 
| 581 | 613 |  	{ | 
| @@ -584,14 +616,15 @@ discard block | ||
| 584 | 616 |  		{ | 
| 585 | 617 | $ext = substr($package_name, strrpos(substr($package_name, 0, -3), '.')); | 
| 586 | 618 | $package_name = substr($package_name, 0, strrpos(substr($package_name, 0, -3), '.')) . '_'; | 
| 619 | +		} else { | |
| 620 | + $ext = ''; | |
| 587 | 621 | } | 
| 588 | - else | |
| 589 | - $ext = ''; | |
| 590 | 622 | |
| 591 | 623 | // Find the first available. | 
| 592 | 624 | $i = 1; | 
| 593 | - while (file_exists($packagesdir . '/' . $package_name . $i . $ext)) | |
| 594 | - $i++; | |
| 625 | +		while (file_exists($packagesdir . '/' . $package_name . $i . $ext)) { | |
| 626 | + $i++; | |
| 627 | + } | |
| 595 | 628 | |
| 596 | 629 | $package_name = $package_name . $i . $ext; | 
| 597 | 630 | } | 
| @@ -602,25 +635,28 @@ discard block | ||
| 602 | 635 | |
| 603 | 636 | // Done! Did we get this package automatically? | 
| 604 | 637 | // @ TODO: These are usually update packages. Allowing both for now until more testing has been done. | 
| 605 | -	if (preg_match('~^https?://[\w_\-]+\.simplemachines\.org/~', $_REQUEST['package']) == 1 && strpos($_REQUEST['package'], 'dlattach') === false && isset($_REQUEST['auto'])) | |
| 606 | -		redirectexit('action=admin;area=packages;sa=install;package=' . $package_name); | |
| 638 | +	if (preg_match('~^https?://[\w_\-]+\.simplemachines\.org/~', $_REQUEST['package']) == 1 && strpos($_REQUEST['package'], 'dlattach') === false && isset($_REQUEST['auto'])) { | |
| 639 | +			redirectexit('action=admin;area=packages;sa=install;package=' . $package_name); | |
| 640 | + } | |
| 607 | 641 | |
| 608 | 642 | // You just downloaded a mod from SERVER_NAME_GOES_HERE. | 
| 609 | 643 | $context['package_server'] = $server; | 
| 610 | 644 | |
| 611 | 645 | $context['package'] = getPackageInfo($package_name); | 
| 612 | 646 | |
| 613 | - if (!is_array($context['package'])) | |
| 614 | -		fatal_lang_error('package_cant_download', false); | |
| 647 | +	if (!is_array($context['package'])) { | |
| 648 | +			fatal_lang_error('package_cant_download', false); | |
| 649 | + } | |
| 615 | 650 | |
| 616 | - if ($context['package']['type'] == 'modification') | |
| 617 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['install_mod'] . ' ]</a>'; | |
| 618 | - elseif ($context['package']['type'] == 'avatar') | |
| 619 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['use_avatars'] . ' ]</a>'; | |
| 620 | - elseif ($context['package']['type'] == 'language') | |
| 621 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['add_languages'] . ' ]</a>'; | |
| 622 | - else | |
| 623 | - $context['package']['install']['link'] = ''; | |
| 651 | +	if ($context['package']['type'] == 'modification') { | |
| 652 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['install_mod'] . ' ]</a>'; | |
| 653 | +	} elseif ($context['package']['type'] == 'avatar') { | |
| 654 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['use_avatars'] . ' ]</a>'; | |
| 655 | +	} elseif ($context['package']['type'] == 'language') { | |
| 656 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['add_languages'] . ' ]</a>'; | |
| 657 | +	} else { | |
| 658 | + $context['package']['install']['link'] = ''; | |
| 659 | + } | |
| 624 | 660 | |
| 625 | 661 | // Does a 3rd party hook want to do some additional changes? | 
| 626 | 662 |  	call_integration_hook('integrate_package_download'); | 
| @@ -646,10 +682,11 @@ discard block | ||
| 646 | 682 | // @todo Use FTP if the Packages directory is not writable. | 
| 647 | 683 | |
| 648 | 684 | // Check the file was even sent! | 
| 649 | - if (!isset($_FILES['package']['name']) || $_FILES['package']['name'] == '') | |
| 650 | -		fatal_lang_error('package_upload_error_nofile'); | |
| 651 | -	elseif (!is_uploaded_file($_FILES['package']['tmp_name']) || (ini_get('open_basedir') == '' && !file_exists($_FILES['package']['tmp_name']))) | |
| 652 | -		fatal_lang_error('package_upload_error_failed'); | |
| 685 | +	if (!isset($_FILES['package']['name']) || $_FILES['package']['name'] == '') { | |
| 686 | +			fatal_lang_error('package_upload_error_nofile'); | |
| 687 | +	} elseif (!is_uploaded_file($_FILES['package']['tmp_name']) || (ini_get('open_basedir') == '' && !file_exists($_FILES['package']['tmp_name']))) { | |
| 688 | +			fatal_lang_error('package_upload_error_failed'); | |
| 689 | + } | |
| 653 | 690 | |
| 654 | 691 | // Make sure it has a sane filename. | 
| 655 | 692 |  	$_FILES['package']['name'] = preg_replace(array('/\s/', '/\.[\.]+/', '/[^\w_\.\-]/'), array('_', '.', ''), $_FILES['package']['name']); | 
| @@ -666,8 +703,9 @@ discard block | ||
| 666 | 703 | // Setup the destination and throw an error if the file is already there! | 
| 667 | 704 | $destination = $packagesdir . '/' . $packageName; | 
| 668 | 705 | // @todo Maybe just roll it like we do for downloads? | 
| 669 | - if (file_exists($destination)) | |
| 670 | -		fatal_lang_error('package_upload_error_exists'); | |
| 706 | +	if (file_exists($destination)) { | |
| 707 | +			fatal_lang_error('package_upload_error_exists'); | |
| 708 | + } | |
| 671 | 709 | |
| 672 | 710 | // Now move the file. | 
| 673 | 711 | move_uploaded_file($_FILES['package']['tmp_name'], $destination); | 
| @@ -690,12 +728,14 @@ discard block | ||
| 690 | 728 |  	{ | 
| 691 | 729 | while ($package = readdir($dir)) | 
| 692 | 730 |  		{ | 
| 693 | - if ($package == '.' || $package == '..' || $package == 'temp' || $package == $packageName || (!(is_dir($packagesdir . '/' . $package) && file_exists($packagesdir . '/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip')) | |
| 694 | - continue; | |
| 731 | +			if ($package == '.' || $package == '..' || $package == 'temp' || $package == $packageName || (!(is_dir($packagesdir . '/' . $package) && file_exists($packagesdir . '/' . $package . '/package-info.xml')) && substr(strtolower($package), -7) != '.tar.gz' && substr(strtolower($package), -4) != '.tgz' && substr(strtolower($package), -4) != '.zip')) { | |
| 732 | + continue; | |
| 733 | + } | |
| 695 | 734 | |
| 696 | 735 | $packageInfo = getPackageInfo($package); | 
| 697 | - if (!is_array($packageInfo)) | |
| 698 | - continue; | |
| 736 | +			if (!is_array($packageInfo)) { | |
| 737 | + continue; | |
| 738 | + } | |
| 699 | 739 | |
| 700 | 740 | if ($packageInfo['id'] == $context['package']['id'] && $packageInfo['version'] == $context['package']['version']) | 
| 701 | 741 |  			{ | 
| @@ -707,14 +747,15 @@ discard block | ||
| 707 | 747 | closedir($dir); | 
| 708 | 748 | } | 
| 709 | 749 | |
| 710 | - if ($context['package']['type'] == 'modification') | |
| 711 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['install_mod'] . ' ]</a>'; | |
| 712 | - elseif ($context['package']['type'] == 'avatar') | |
| 713 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['use_avatars'] . ' ]</a>'; | |
| 714 | - elseif ($context['package']['type'] == 'language') | |
| 715 | - $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['add_languages'] . ' ]</a>'; | |
| 716 | - else | |
| 717 | - $context['package']['install']['link'] = ''; | |
| 750 | +	if ($context['package']['type'] == 'modification') { | |
| 751 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['install_mod'] . ' ]</a>'; | |
| 752 | +	} elseif ($context['package']['type'] == 'avatar') { | |
| 753 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['use_avatars'] . ' ]</a>'; | |
| 754 | +	} elseif ($context['package']['type'] == 'language') { | |
| 755 | + $context['package']['install']['link'] = '<a href="' . $scripturl . '?action=admin;area=packages;sa=install;package=' . $context['package']['filename'] . '">[ ' . $txt['add_languages'] . ' ]</a>'; | |
| 756 | +	} else { | |
| 757 | + $context['package']['install']['link'] = ''; | |
| 758 | + } | |
| 718 | 759 | |
| 719 | 760 | // Does a 3rd party hook want to do some additional changes? | 
| 720 | 761 |  	call_integration_hook('integrate_package_upload'); | 
| @@ -737,16 +778,18 @@ discard block | ||
| 737 | 778 | checkSession(); | 
| 738 | 779 | |
| 739 | 780 | // If they put a slash on the end, get rid of it. | 
| 740 | - if (substr($_POST['serverurl'], -1) == '/') | |
| 741 | - $_POST['serverurl'] = substr($_POST['serverurl'], 0, -1); | |
| 781 | +	if (substr($_POST['serverurl'], -1) == '/') { | |
| 782 | + $_POST['serverurl'] = substr($_POST['serverurl'], 0, -1); | |
| 783 | + } | |
| 742 | 784 | |
| 743 | 785 | // Are they both nice and clean? | 
| 744 | 786 | $servername = trim($smcFunc['htmlspecialchars']($_POST['servername'])); | 
| 745 | 787 | $serverurl = trim($smcFunc['htmlspecialchars']($_POST['serverurl'])); | 
| 746 | 788 | |
| 747 | 789 | // Make sure the URL has the correct prefix. | 
| 748 | - if (strpos($serverurl, 'http://') !== 0 && strpos($serverurl, 'https://') !== 0) | |
| 749 | - $serverurl = 'http://' . $serverurl; | |
| 790 | +	if (strpos($serverurl, 'http://') !== 0 && strpos($serverurl, 'https://') !== 0) { | |
| 791 | + $serverurl = 'http://' . $serverurl; | |
| 792 | + } | |
| 750 | 793 | |
| 751 | 794 |  	$smcFunc['db_insert']('', | 
| 752 | 795 |  		'{db_prefix}package_servers', | 
| @@ -659,7 +659,7 @@ discard block | ||
| 659 | 659 | |
| 660 | 660 | // Remove the phrase parts and extract the words. | 
| 661 | 661 |  	$wordArray = preg_replace('~(?:^|\s)(?:[-]?)"(?:[^"]+)"(?:$|\s)~' . ($context['utf8'] ? 'u' : ''), ' ', $search_params['search']); | 
| 662 | -	$wordArray = explode(' ',  $smcFunc['htmlspecialchars'](un_htmlspecialchars($wordArray), ENT_QUOTES)); | |
| 662 | +	$wordArray = explode(' ', $smcFunc['htmlspecialchars'](un_htmlspecialchars($wordArray), ENT_QUOTES)); | |
| 663 | 663 | |
| 664 | 664 | // A minus sign in front of a word excludes the word.... so... | 
| 665 | 665 | $excludedWords = array(); | 
| @@ -1104,7 +1104,7 @@ discard block | ||
| 1104 | 1104 | SELECT | 
| 1105 | 1105 |  							{int:id_search}, | 
| 1106 | 1106 | t.id_topic, | 
| 1107 | - ' . $relevance. ', | |
| 1107 | + ' . $relevance . ', | |
| 1108 | 1108 | ' . (empty($userQuery) ? 't.id_first_msg' : 'm.id_msg') . ', | 
| 1109 | 1109 | 1 | 
| 1110 | 1110 | FROM ' . $subject_query['from'] . (empty($subject_query['inner_join']) ? '' : ' | 
| @@ -1339,7 +1339,7 @@ discard block | ||
| 1339 | 1339 | if (empty($subject_query['where'])) | 
| 1340 | 1340 | continue; | 
| 1341 | 1341 | |
| 1342 | -						$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_topics', ($smcFunc['db_support_ignore'] ? ( ' | |
| 1342 | +						$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_topics', ($smcFunc['db_support_ignore'] ? (' | |
| 1343 | 1343 |  							INSERT IGNORE INTO {db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics | 
| 1344 | 1344 |  								(' . ($createTemporary ? '' : 'id_search, ') . 'id_topic)') : '') . ' | 
| 1345 | 1345 | SELECT ' . ($createTemporary ? '' : $_SESSION['search_cache']['id_search'] . ', ') . 't.id_topic | 
| @@ -1568,7 +1568,7 @@ discard block | ||
| 1568 | 1568 | } | 
| 1569 | 1569 | $main_query['select']['relevance'] = substr($relevance, 0, -3) . ') / ' . $new_weight_total . ' AS relevance'; | 
| 1570 | 1570 | |
| 1571 | -					$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_no_index', ($smcFunc['db_support_ignore'] ? ( ' | |
| 1571 | +					$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_no_index', ($smcFunc['db_support_ignore'] ? (' | |
| 1572 | 1572 |  						INSERT IGNORE INTO ' . '{db_prefix}log_search_results | 
| 1573 | 1573 |  							(' . implode(', ', array_keys($main_query['select'])) . ')') : '') . ' | 
| 1574 | 1574 | SELECT | 
| @@ -1636,7 +1636,7 @@ discard block | ||
| 1636 | 1636 | $relevance = substr($relevance, 0, -3) . ') / ' . $weight_total . ' AS relevance'; | 
| 1637 | 1637 | |
| 1638 | 1638 | $usedIDs = array_flip(empty($inserts) ? array() : array_keys($inserts)); | 
| 1639 | -					$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_sub_only', ($smcFunc['db_support_ignore'] ? ( ' | |
| 1639 | +					$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_results_sub_only', ($smcFunc['db_support_ignore'] ? (' | |
| 1640 | 1640 |  						INSERT IGNORE INTO {db_prefix}log_search_results | 
| 1641 | 1641 | (id_search, id_topic, relevance, id_msg, num_matches)') : '') . ' | 
| 1642 | 1642 | SELECT | 
| @@ -2102,7 +2102,7 @@ discard block | ||
| 2102 | 2102 | $query = trim($query, "\*+"); | 
| 2103 | 2103 |  		$query = strtr($smcFunc['htmlspecialchars']($query), array('\\\'' => '\'')); | 
| 2104 | 2104 | |
| 2105 | -		$body_highlighted = preg_replace_callback('/((<[^>]*)|' . preg_quote(strtr($query, array('\'' => ''')), '/') . ')/i' . ($context['utf8'] ? 'u' : ''), function ($m) | |
| 2105 | +		$body_highlighted = preg_replace_callback('/((<[^>]*)|' . preg_quote(strtr($query, array('\'' => ''')), '/') . ')/i' . ($context['utf8'] ? 'u' : ''), function($m) | |
| 2106 | 2106 |  		{ | 
| 2107 | 2107 |  			return isset($m[2]) && "$m[2]" == "$m[1]" ? stripslashes("$m[1]") : "<strong class=\"highlight\">$m[1]</strong>"; | 
| 2108 | 2108 | }, $body_highlighted); | 
| @@ -13,8 +13,9 @@ discard block | ||
| 13 | 13 | * @version 2.1 Beta 4 | 
| 14 | 14 | */ | 
| 15 | 15 | |
| 16 | -if (!defined('SMF')) | |
| 16 | +if (!defined('SMF')) { | |
| 17 | 17 |  	die('No direct access...'); | 
| 18 | +} | |
| 18 | 19 | |
| 19 | 20 | // This defines two version types for checking the API's are compatible with this version of SMF. | 
| 20 | 21 | $GLOBALS['search_versions'] = array( | 
| @@ -39,8 +40,9 @@ discard block | ||
| 39 | 40 | global $txt, $scripturl, $modSettings, $user_info, $context, $smcFunc, $sourcedir; | 
| 40 | 41 | |
| 41 | 42 | // Is the load average too high to allow searching just now? | 
| 42 | - if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) | |
| 43 | -		fatal_lang_error('loadavg_search_disabled', false); | |
| 43 | +	if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) { | |
| 44 | +			fatal_lang_error('loadavg_search_disabled', false); | |
| 45 | + } | |
| 44 | 46 | |
| 45 | 47 |  	loadLanguage('Search'); | 
| 46 | 48 | // Don't load this in XML mode. | 
| @@ -88,23 +90,30 @@ discard block | ||
| 88 | 90 |  			@list ($k, $v) = explode('|\'|', $data); | 
| 89 | 91 | $context['search_params'][$k] = $v; | 
| 90 | 92 | } | 
| 91 | - if (isset($context['search_params']['brd'])) | |
| 92 | -			$context['search_params']['brd'] = $context['search_params']['brd'] == '' ? array() : explode(',', $context['search_params']['brd']); | |
| 93 | +		if (isset($context['search_params']['brd'])) { | |
| 94 | +					$context['search_params']['brd'] = $context['search_params']['brd'] == '' ? array() : explode(',', $context['search_params']['brd']); | |
| 95 | + } | |
| 93 | 96 | } | 
| 94 | 97 | |
| 95 | - if (isset($_REQUEST['search'])) | |
| 96 | - $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); | |
| 98 | +	if (isset($_REQUEST['search'])) { | |
| 99 | + $context['search_params']['search'] = un_htmlspecialchars($_REQUEST['search']); | |
| 100 | + } | |
| 97 | 101 | |
| 98 | - if (isset($context['search_params']['search'])) | |
| 99 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); | |
| 100 | - if (isset($context['search_params']['userspec'])) | |
| 101 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); | |
| 102 | - if (!empty($context['search_params']['searchtype'])) | |
| 103 | - $context['search_params']['searchtype'] = 2; | |
| 104 | - if (!empty($context['search_params']['minage'])) | |
| 105 | - $context['search_params']['minage'] = (int) $context['search_params']['minage']; | |
| 106 | - if (!empty($context['search_params']['maxage'])) | |
| 107 | - $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; | |
| 102 | +	if (isset($context['search_params']['search'])) { | |
| 103 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); | |
| 104 | + } | |
| 105 | +	if (isset($context['search_params']['userspec'])) { | |
| 106 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); | |
| 107 | + } | |
| 108 | +	if (!empty($context['search_params']['searchtype'])) { | |
| 109 | + $context['search_params']['searchtype'] = 2; | |
| 110 | + } | |
| 111 | +	if (!empty($context['search_params']['minage'])) { | |
| 112 | + $context['search_params']['minage'] = (int) $context['search_params']['minage']; | |
| 113 | + } | |
| 114 | +	if (!empty($context['search_params']['maxage'])) { | |
| 115 | + $context['search_params']['maxage'] = (int) $context['search_params']['maxage']; | |
| 116 | + } | |
| 108 | 117 | |
| 109 | 118 | $context['search_params']['show_complete'] = !empty($context['search_params']['show_complete']); | 
| 110 | 119 | $context['search_params']['subject_only'] = !empty($context['search_params']['subject_only']); | 
| @@ -116,11 +125,13 @@ discard block | ||
| 116 | 125 | $context['search_errors']['messages'] = array(); | 
| 117 | 126 | foreach ($context['search_errors'] as $search_error => $dummy) | 
| 118 | 127 |  		{ | 
| 119 | - if ($search_error === 'messages') | |
| 120 | - continue; | |
| 128 | +			if ($search_error === 'messages') { | |
| 129 | + continue; | |
| 130 | + } | |
| 121 | 131 | |
| 122 | - if ($search_error == 'string_too_long') | |
| 123 | - $txt['error_string_too_long'] = sprintf($txt['error_string_too_long'], $context['search_string_limit']); | |
| 132 | +			if ($search_error == 'string_too_long') { | |
| 133 | + $txt['error_string_too_long'] = sprintf($txt['error_string_too_long'], $context['search_string_limit']); | |
| 134 | + } | |
| 124 | 135 | |
| 125 | 136 | $context['search_errors']['messages'][] = $txt['error_' . $search_error]; | 
| 126 | 137 | } | 
| @@ -143,12 +154,13 @@ discard block | ||
| 143 | 154 | while ($row = $smcFunc['db_fetch_assoc']($request)) | 
| 144 | 155 |  	{ | 
| 145 | 156 | // This category hasn't been set up yet.. | 
| 146 | - if (!isset($context['categories'][$row['id_cat']])) | |
| 147 | - $context['categories'][$row['id_cat']] = array( | |
| 157 | +		if (!isset($context['categories'][$row['id_cat']])) { | |
| 158 | + $context['categories'][$row['id_cat']] = array( | |
| 148 | 159 | 'id' => $row['id_cat'], | 
| 149 | 160 | 'name' => $row['cat_name'], | 
| 150 | 161 | 'boards' => array() | 
| 151 | 162 | ); | 
| 163 | + } | |
| 152 | 164 | |
| 153 | 165 | // Set this board up, and let the template know when it's a child. (indent them..) | 
| 154 | 166 | $context['categories'][$row['id_cat']]['boards'][$row['id_board']] = array( | 
| @@ -159,8 +171,9 @@ discard block | ||
| 159 | 171 | ); | 
| 160 | 172 | |
| 161 | 173 | // If a board wasn't checked that probably should have been ensure the board selection is selected, yo! | 
| 162 | - if (!$context['categories'][$row['id_cat']]['boards'][$row['id_board']]['selected'] && (empty($modSettings['recycle_enable']) || $row['id_board'] != $modSettings['recycle_board'])) | |
| 163 | - $context['boards_check_all'] = false; | |
| 174 | +		if (!$context['categories'][$row['id_cat']]['boards'][$row['id_board']]['selected'] && (empty($modSettings['recycle_enable']) || $row['id_board'] != $modSettings['recycle_board'])) { | |
| 175 | + $context['boards_check_all'] = false; | |
| 176 | + } | |
| 164 | 177 | } | 
| 165 | 178 | $smcFunc['db_free_result']($request); | 
| 166 | 179 | |
| @@ -182,18 +195,20 @@ discard block | ||
| 182 | 195 | } | 
| 183 | 196 | |
| 184 | 197 | $max_boards = ceil(count($temp_boards) / 2); | 
| 185 | - if ($max_boards == 1) | |
| 186 | - $max_boards = 2; | |
| 198 | +	if ($max_boards == 1) { | |
| 199 | + $max_boards = 2; | |
| 200 | + } | |
| 187 | 201 | |
| 188 | 202 | // Now, alternate them so they can be shown left and right ;). | 
| 189 | 203 | $context['board_columns'] = array(); | 
| 190 | 204 | for ($i = 0; $i < $max_boards; $i++) | 
| 191 | 205 |  	{ | 
| 192 | 206 | $context['board_columns'][] = $temp_boards[$i]; | 
| 193 | - if (isset($temp_boards[$i + $max_boards])) | |
| 194 | - $context['board_columns'][] = $temp_boards[$i + $max_boards]; | |
| 195 | - else | |
| 196 | - $context['board_columns'][] = array(); | |
| 207 | +		if (isset($temp_boards[$i + $max_boards])) { | |
| 208 | + $context['board_columns'][] = $temp_boards[$i + $max_boards]; | |
| 209 | +		} else { | |
| 210 | + $context['board_columns'][] = array(); | |
| 211 | + } | |
| 197 | 212 | } | 
| 198 | 213 | |
| 199 | 214 | if (!empty($_REQUEST['topic'])) | 
| @@ -225,8 +240,9 @@ discard block | ||
| 225 | 240 | ) | 
| 226 | 241 | ); | 
| 227 | 242 | |
| 228 | - if ($smcFunc['db_num_rows']($request) == 0) | |
| 229 | -			fatal_lang_error('topic_gone', false); | |
| 243 | +		if ($smcFunc['db_num_rows']($request) == 0) { | |
| 244 | +					fatal_lang_error('topic_gone', false); | |
| 245 | + } | |
| 230 | 246 | |
| 231 | 247 | list ($context['search_topic']['subject']) = $smcFunc['db_fetch_row']($request); | 
| 232 | 248 | $smcFunc['db_free_result']($request); | 
| @@ -256,11 +272,13 @@ discard block | ||
| 256 | 272 | global $excludedWords, $participants, $smcFunc; | 
| 257 | 273 | |
| 258 | 274 | // if comming from the quick search box, and we want to search on members, well we need to do that ;) | 
| 259 | - if (isset($_REQUEST['search_selection']) && $_REQUEST['search_selection'] === 'members') | |
| 260 | - redirectexit($scripturl . '?action=mlist;sa=search;fields=name,email;search=' . urlencode($_REQUEST['search'])); | |
| 275 | +	if (isset($_REQUEST['search_selection']) && $_REQUEST['search_selection'] === 'members') { | |
| 276 | + redirectexit($scripturl . '?action=mlist;sa=search;fields=name,email;search=' . urlencode($_REQUEST['search'])); | |
| 277 | + } | |
| 261 | 278 | |
| 262 | - if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) | |
| 263 | -		fatal_lang_error('loadavg_search_disabled', false); | |
| 279 | +	if (!empty($context['load_average']) && !empty($modSettings['loadavg_search']) && $context['load_average'] >= $modSettings['loadavg_search']) { | |
| 280 | +			fatal_lang_error('loadavg_search_disabled', false); | |
| 281 | + } | |
| 264 | 282 | |
| 265 | 283 | // No, no, no... this is a bit hard on the server, so don't you go prefetching it! | 
| 266 | 284 | if (isset($_SERVER['HTTP_X_MOZ']) && $_SERVER['HTTP_X_MOZ'] == 'prefetch') | 
| @@ -307,8 +325,9 @@ discard block | ||
| 307 | 325 | } | 
| 308 | 326 | |
| 309 | 327 | // Zero weight. Weightless :P. | 
| 310 | - if (empty($weight_total)) | |
| 311 | -		fatal_lang_error('search_invalid_weights'); | |
| 328 | +	if (empty($weight_total)) { | |
| 329 | +			fatal_lang_error('search_invalid_weights'); | |
| 330 | + } | |
| 312 | 331 | |
| 313 | 332 | // These vars don't require an interface, they're just here for tweaking. | 
| 314 | 333 | $recentPercentage = 0.30; | 
| @@ -326,11 +345,13 @@ discard block | ||
| 326 | 345 | $context['search_string_limit'] = 100; | 
| 327 | 346 | |
| 328 | 347 |  	loadLanguage('Search'); | 
| 329 | - if (!isset($_REQUEST['xml'])) | |
| 330 | -		loadTemplate('Search'); | |
| 348 | +	if (!isset($_REQUEST['xml'])) { | |
| 349 | +			loadTemplate('Search'); | |
| 350 | + } | |
| 331 | 351 | //If we're doing XML we need to use the results template regardless really. | 
| 332 | - else | |
| 333 | - $context['sub_template'] = 'results'; | |
| 352 | +	else { | |
| 353 | + $context['sub_template'] = 'results'; | |
| 354 | + } | |
| 334 | 355 | |
| 335 | 356 | // Are you allowed? | 
| 336 | 357 |  	isAllowedTo('search_posts'); | 
| @@ -363,34 +384,39 @@ discard block | ||
| 363 | 384 | $search_params[$k] = $v; | 
| 364 | 385 | } | 
| 365 | 386 | |
| 366 | - if (isset($search_params['brd'])) | |
| 367 | -			$search_params['brd'] = empty($search_params['brd']) ? array() : explode(',', $search_params['brd']); | |
| 387 | +		if (isset($search_params['brd'])) { | |
| 388 | +					$search_params['brd'] = empty($search_params['brd']) ? array() : explode(',', $search_params['brd']); | |
| 389 | + } | |
| 368 | 390 | } | 
| 369 | 391 | |
| 370 | 392 | // Store whether simple search was used (needed if the user wants to do another query). | 
| 371 | - if (!isset($search_params['advanced'])) | |
| 372 | - $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; | |
| 393 | +	if (!isset($search_params['advanced'])) { | |
| 394 | + $search_params['advanced'] = empty($_REQUEST['advanced']) ? 0 : 1; | |
| 395 | + } | |
| 373 | 396 | |
| 374 | 397 | // 1 => 'allwords' (default, don't set as param) / 2 => 'anywords'. | 
| 375 | - if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) | |
| 376 | - $search_params['searchtype'] = 2; | |
| 398 | +	if (!empty($search_params['searchtype']) || (!empty($_REQUEST['searchtype']) && $_REQUEST['searchtype'] == 2)) { | |
| 399 | + $search_params['searchtype'] = 2; | |
| 400 | + } | |
| 377 | 401 | |
| 378 | 402 | // Minimum age of messages. Default to zero (don't set param in that case). | 
| 379 | - if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) | |
| 380 | - $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; | |
| 403 | +	if (!empty($search_params['minage']) || (!empty($_REQUEST['minage']) && $_REQUEST['minage'] > 0)) { | |
| 404 | + $search_params['minage'] = !empty($search_params['minage']) ? (int) $search_params['minage'] : (int) $_REQUEST['minage']; | |
| 405 | + } | |
| 381 | 406 | |
| 382 | 407 | // Maximum age of messages. Default to infinite (9999 days: param not set). | 
| 383 | - if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] < 9999)) | |
| 384 | - $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; | |
| 408 | +	if (!empty($search_params['maxage']) || (!empty($_REQUEST['maxage']) && $_REQUEST['maxage'] < 9999)) { | |
| 409 | + $search_params['maxage'] = !empty($search_params['maxage']) ? (int) $search_params['maxage'] : (int) $_REQUEST['maxage']; | |
| 410 | + } | |
| 385 | 411 | |
| 386 | 412 | // Searching a specific topic? | 
| 387 | 413 | if (!empty($_REQUEST['topic']) || (!empty($_REQUEST['search_selection']) && $_REQUEST['search_selection'] == 'topic')) | 
| 388 | 414 |  	{ | 
| 389 | 415 | $search_params['topic'] = empty($_REQUEST['search_selection']) ? (int) $_REQUEST['topic'] : (isset($_REQUEST['sd_topic']) ? (int) $_REQUEST['sd_topic'] : ''); | 
| 390 | 416 | $search_params['show_complete'] = true; | 
| 417 | +	} elseif (!empty($search_params['topic'])) { | |
| 418 | + $search_params['topic'] = (int) $search_params['topic']; | |
| 391 | 419 | } | 
| 392 | - elseif (!empty($search_params['topic'])) | |
| 393 | - $search_params['topic'] = (int) $search_params['topic']; | |
| 394 | 420 | |
| 395 | 421 | if (!empty($search_params['minage']) || !empty($search_params['maxage'])) | 
| 396 | 422 |  	{ | 
| @@ -408,19 +434,21 @@ discard block | ||
| 408 | 434 | ) | 
| 409 | 435 | ); | 
| 410 | 436 | list ($minMsgID, $maxMsgID) = $smcFunc['db_fetch_row']($request); | 
| 411 | - if ($minMsgID < 0 || $maxMsgID < 0) | |
| 412 | - $context['search_errors']['no_messages_in_time_frame'] = true; | |
| 437 | +		if ($minMsgID < 0 || $maxMsgID < 0) { | |
| 438 | + $context['search_errors']['no_messages_in_time_frame'] = true; | |
| 439 | + } | |
| 413 | 440 | $smcFunc['db_free_result']($request); | 
| 414 | 441 | } | 
| 415 | 442 | |
| 416 | 443 | // Default the user name to a wildcard matching every user (*). | 
| 417 | - if (!empty($search_params['userspec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) | |
| 418 | - $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; | |
| 444 | +	if (!empty($search_params['userspec']) || (!empty($_REQUEST['userspec']) && $_REQUEST['userspec'] != '*')) { | |
| 445 | + $search_params['userspec'] = isset($search_params['userspec']) ? $search_params['userspec'] : $_REQUEST['userspec']; | |
| 446 | + } | |
| 419 | 447 | |
| 420 | 448 | // If there's no specific user, then don't mention it in the main query. | 
| 421 | - if (empty($search_params['userspec'])) | |
| 422 | - $userQuery = ''; | |
| 423 | - else | |
| 449 | +	if (empty($search_params['userspec'])) { | |
| 450 | + $userQuery = ''; | |
| 451 | + } else | |
| 424 | 452 |  	{ | 
| 425 | 453 |  		$userString = strtr($smcFunc['htmlspecialchars']($search_params['userspec'], ENT_QUOTES), array('"' => '"')); | 
| 426 | 454 |  		$userString = strtr($userString, array('%' => '\%', '_' => '\_', '*' => '%', '?' => '_')); | 
| @@ -432,19 +460,21 @@ discard block | ||
| 432 | 460 |  		{ | 
| 433 | 461 | $possible_users[$k] = trim($possible_users[$k]); | 
| 434 | 462 | |
| 435 | - if (strlen($possible_users[$k]) == 0) | |
| 436 | - unset($possible_users[$k]); | |
| 463 | +			if (strlen($possible_users[$k]) == 0) { | |
| 464 | + unset($possible_users[$k]); | |
| 465 | + } | |
| 437 | 466 | } | 
| 438 | 467 | |
| 439 | 468 | // Create a list of database-escaped search names. | 
| 440 | 469 | $realNameMatches = array(); | 
| 441 | - foreach ($possible_users as $possible_user) | |
| 442 | - $realNameMatches[] = $smcFunc['db_quote']( | |
| 470 | +		foreach ($possible_users as $possible_user) { | |
| 471 | + $realNameMatches[] = $smcFunc['db_quote']( | |
| 443 | 472 |  				'{string:possible_user}', | 
| 444 | 473 | array( | 
| 445 | 474 | 'possible_user' => $possible_user | 
| 446 | 475 | ) | 
| 447 | 476 | ); | 
| 477 | + } | |
| 448 | 478 | |
| 449 | 479 | // Retrieve a list of possible members. | 
| 450 | 480 |  		$request = $smcFunc['db_query']('', ' | 
| @@ -456,9 +486,9 @@ discard block | ||
| 456 | 486 | ) | 
| 457 | 487 | ); | 
| 458 | 488 | // Simply do nothing if there're too many members matching the criteria. | 
| 459 | - if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) | |
| 460 | - $userQuery = ''; | |
| 461 | - elseif ($smcFunc['db_num_rows']($request) == 0) | |
| 489 | +		if ($smcFunc['db_num_rows']($request) > $maxMembersToSearch) { | |
| 490 | + $userQuery = ''; | |
| 491 | + } elseif ($smcFunc['db_num_rows']($request) == 0) | |
| 462 | 492 |  		{ | 
| 463 | 493 | $userQuery = $smcFunc['db_quote']( | 
| 464 | 494 |  				'm.id_member = {int:id_member_guest} AND ({raw:match_possible_guest_names})', | 
| @@ -467,12 +497,12 @@ discard block | ||
| 467 | 497 |  					'match_possible_guest_names' => 'm.poster_name LIKE ' . implode(' OR m.poster_name LIKE ', $realNameMatches), | 
| 468 | 498 | ) | 
| 469 | 499 | ); | 
| 470 | - } | |
| 471 | - else | |
| 500 | + } else | |
| 472 | 501 |  		{ | 
| 473 | 502 | $memberlist = array(); | 
| 474 | - while ($row = $smcFunc['db_fetch_assoc']($request)) | |
| 475 | - $memberlist[] = $row['id_member']; | |
| 503 | +			while ($row = $smcFunc['db_fetch_assoc']($request)) { | |
| 504 | + $memberlist[] = $row['id_member']; | |
| 505 | + } | |
| 476 | 506 | $userQuery = $smcFunc['db_quote']( | 
| 477 | 507 |  				'(m.id_member IN ({array_int:matched_members}) OR (m.id_member = {int:id_member_guest} AND ({raw:match_possible_guest_names})))', | 
| 478 | 508 | array( | 
| @@ -486,22 +516,25 @@ discard block | ||
| 486 | 516 | } | 
| 487 | 517 | |
| 488 | 518 | // If the boards were passed by URL (params=), temporarily put them back in $_REQUEST. | 
| 489 | - if (!empty($search_params['brd']) && is_array($search_params['brd'])) | |
| 490 | - $_REQUEST['brd'] = $search_params['brd']; | |
| 519 | +	if (!empty($search_params['brd']) && is_array($search_params['brd'])) { | |
| 520 | + $_REQUEST['brd'] = $search_params['brd']; | |
| 521 | + } | |
| 491 | 522 | |
| 492 | 523 | // Ensure that brd is an array. | 
| 493 | 524 | if ((!empty($_REQUEST['brd']) && !is_array($_REQUEST['brd'])) || (!empty($_REQUEST['search_selection']) && $_REQUEST['search_selection'] == 'board')) | 
| 494 | 525 |  	{ | 
| 495 | - if (!empty($_REQUEST['brd'])) | |
| 496 | -			$_REQUEST['brd'] = strpos($_REQUEST['brd'], ',') !== false ? explode(',', $_REQUEST['brd']) : array($_REQUEST['brd']); | |
| 497 | - else | |
| 498 | - $_REQUEST['brd'] = isset($_REQUEST['sd_brd']) ? array($_REQUEST['sd_brd']) : array(); | |
| 526 | +		if (!empty($_REQUEST['brd'])) { | |
| 527 | +					$_REQUEST['brd'] = strpos($_REQUEST['brd'], ',') !== false ? explode(',', $_REQUEST['brd']) : array($_REQUEST['brd']); | |
| 528 | +		} else { | |
| 529 | + $_REQUEST['brd'] = isset($_REQUEST['sd_brd']) ? array($_REQUEST['sd_brd']) : array(); | |
| 530 | + } | |
| 499 | 531 | } | 
| 500 | 532 | |
| 501 | 533 | // Make sure all boards are integers. | 
| 502 | - if (!empty($_REQUEST['brd'])) | |
| 503 | - foreach ($_REQUEST['brd'] as $id => $brd) | |
| 534 | +	if (!empty($_REQUEST['brd'])) { | |
| 535 | + foreach ($_REQUEST['brd'] as $id => $brd) | |
| 504 | 536 | $_REQUEST['brd'][$id] = (int) $brd; | 
| 537 | + } | |
| 505 | 538 | |
| 506 | 539 | // Special case for boards: searching just one topic? | 
| 507 | 540 | if (!empty($search_params['topic'])) | 
| @@ -520,17 +553,18 @@ discard block | ||
| 520 | 553 | ) | 
| 521 | 554 | ); | 
| 522 | 555 | |
| 523 | - if ($smcFunc['db_num_rows']($request) == 0) | |
| 524 | -			fatal_lang_error('topic_gone', false); | |
| 556 | +		if ($smcFunc['db_num_rows']($request) == 0) { | |
| 557 | +					fatal_lang_error('topic_gone', false); | |
| 558 | + } | |
| 525 | 559 | |
| 526 | 560 | $search_params['brd'] = array(); | 
| 527 | 561 | list ($search_params['brd'][0]) = $smcFunc['db_fetch_row']($request); | 
| 528 | 562 | $smcFunc['db_free_result']($request); | 
| 529 | 563 | } | 
| 530 | 564 | // Select all boards you've selected AND are allowed to see. | 
| 531 | - elseif ($user_info['is_admin'] && (!empty($search_params['advanced']) || !empty($_REQUEST['brd']))) | |
| 532 | - $search_params['brd'] = empty($_REQUEST['brd']) ? array() : $_REQUEST['brd']; | |
| 533 | - else | |
| 565 | +	elseif ($user_info['is_admin'] && (!empty($search_params['advanced']) || !empty($_REQUEST['brd']))) { | |
| 566 | + $search_params['brd'] = empty($_REQUEST['brd']) ? array() : $_REQUEST['brd']; | |
| 567 | + } else | |
| 534 | 568 |  	{ | 
| 535 | 569 | $see_board = empty($search_params['advanced']) ? 'query_wanna_see_board' : 'query_see_board'; | 
| 536 | 570 |  		$request = $smcFunc['db_query']('', ' | 
| @@ -548,19 +582,22 @@ discard block | ||
| 548 | 582 | ) | 
| 549 | 583 | ); | 
| 550 | 584 | $search_params['brd'] = array(); | 
| 551 | - while ($row = $smcFunc['db_fetch_assoc']($request)) | |
| 552 | - $search_params['brd'][] = $row['id_board']; | |
| 585 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | |
| 586 | + $search_params['brd'][] = $row['id_board']; | |
| 587 | + } | |
| 553 | 588 | $smcFunc['db_free_result']($request); | 
| 554 | 589 | |
| 555 | 590 | // This error should pro'bly only happen for hackers. | 
| 556 | - if (empty($search_params['brd'])) | |
| 557 | - $context['search_errors']['no_boards_selected'] = true; | |
| 591 | +		if (empty($search_params['brd'])) { | |
| 592 | + $context['search_errors']['no_boards_selected'] = true; | |
| 593 | + } | |
| 558 | 594 | } | 
| 559 | 595 | |
| 560 | 596 | if (count($search_params['brd']) != 0) | 
| 561 | 597 |  	{ | 
| 562 | - foreach ($search_params['brd'] as $k => $v) | |
| 563 | - $search_params['brd'][$k] = (int) $v; | |
| 598 | +		foreach ($search_params['brd'] as $k => $v) { | |
| 599 | + $search_params['brd'][$k] = (int) $v; | |
| 600 | + } | |
| 564 | 601 | |
| 565 | 602 | // If we've selected all boards, this parameter can be left empty. | 
| 566 | 603 |  		$request = $smcFunc['db_query']('', ' | 
| @@ -574,15 +611,16 @@ discard block | ||
| 574 | 611 | list ($num_boards) = $smcFunc['db_fetch_row']($request); | 
| 575 | 612 | $smcFunc['db_free_result']($request); | 
| 576 | 613 | |
| 577 | - if (count($search_params['brd']) == $num_boards) | |
| 614 | +		if (count($search_params['brd']) == $num_boards) { | |
| 615 | + $boardQuery = ''; | |
| 616 | +		} elseif (count($search_params['brd']) == $num_boards - 1 && !empty($modSettings['recycle_board']) && !in_array($modSettings['recycle_board'], $search_params['brd'])) { | |
| 617 | + $boardQuery = '!= ' . $modSettings['recycle_board']; | |
| 618 | +		} else { | |
| 619 | +					$boardQuery = 'IN (' . implode(', ', $search_params['brd']) . ')'; | |
| 620 | + } | |
| 621 | +	} else { | |
| 578 | 622 | $boardQuery = ''; | 
| 579 | - elseif (count($search_params['brd']) == $num_boards - 1 && !empty($modSettings['recycle_board']) && !in_array($modSettings['recycle_board'], $search_params['brd'])) | |
| 580 | - $boardQuery = '!= ' . $modSettings['recycle_board']; | |
| 581 | - else | |
| 582 | -			$boardQuery = 'IN (' . implode(', ', $search_params['brd']) . ')'; | |
| 583 | 623 | } | 
| 584 | - else | |
| 585 | - $boardQuery = ''; | |
| 586 | 624 | |
| 587 | 625 | $search_params['show_complete'] = !empty($search_params['show_complete']) || !empty($_REQUEST['show_complete']); | 
| 588 | 626 | $search_params['subject_only'] = !empty($search_params['subject_only']) || !empty($_REQUEST['subject_only']); | 
| @@ -596,11 +634,13 @@ discard block | ||
| 596 | 634 | 'id_msg', | 
| 597 | 635 | ); | 
| 598 | 636 |  	call_integration_hook('integrate_search_sort_columns', array(&$sort_columns)); | 
| 599 | - if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) | |
| 600 | -		list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); | |
| 637 | +	if (empty($search_params['sort']) && !empty($_REQUEST['sort'])) { | |
| 638 | +			list ($search_params['sort'], $search_params['sort_dir']) = array_pad(explode('|', $_REQUEST['sort']), 2, ''); | |
| 639 | + } | |
| 601 | 640 | $search_params['sort'] = !empty($search_params['sort']) && in_array($search_params['sort'], $sort_columns) ? $search_params['sort'] : 'relevance'; | 
| 602 | - if (!empty($search_params['topic']) && $search_params['sort'] === 'num_replies') | |
| 603 | - $search_params['sort'] = 'id_msg'; | |
| 641 | +	if (!empty($search_params['topic']) && $search_params['sort'] === 'num_replies') { | |
| 642 | + $search_params['sort'] = 'id_msg'; | |
| 643 | + } | |
| 604 | 644 | |
| 605 | 645 | // Sorting direction: descending unless stated otherwise. | 
| 606 | 646 | $search_params['sort_dir'] = !empty($search_params['sort_dir']) && $search_params['sort_dir'] == 'asc' ? 'asc' : 'desc'; | 
| @@ -624,17 +664,19 @@ discard block | ||
| 624 | 664 | // What are we searching for? | 
| 625 | 665 | if (empty($search_params['search'])) | 
| 626 | 666 |  	{ | 
| 627 | - if (isset($_GET['search'])) | |
| 628 | - $search_params['search'] = un_htmlspecialchars($_GET['search']); | |
| 629 | - elseif (isset($_POST['search'])) | |
| 630 | - $search_params['search'] = $_POST['search']; | |
| 631 | - else | |
| 632 | - $search_params['search'] = ''; | |
| 667 | +		if (isset($_GET['search'])) { | |
| 668 | + $search_params['search'] = un_htmlspecialchars($_GET['search']); | |
| 669 | +		} elseif (isset($_POST['search'])) { | |
| 670 | + $search_params['search'] = $_POST['search']; | |
| 671 | +		} else { | |
| 672 | + $search_params['search'] = ''; | |
| 673 | + } | |
| 633 | 674 | } | 
| 634 | 675 | |
| 635 | 676 | // Nothing?? | 
| 636 | - if (!isset($search_params['search']) || $search_params['search'] == '') | |
| 637 | - $context['search_errors']['invalid_search_string'] = true; | |
| 677 | +	if (!isset($search_params['search']) || $search_params['search'] == '') { | |
| 678 | + $context['search_errors']['invalid_search_string'] = true; | |
| 679 | + } | |
| 638 | 680 | // Too long? | 
| 639 | 681 | elseif ($smcFunc['strlen']($search_params['search']) > $context['search_string_limit']) | 
| 640 | 682 |  	{ | 
| @@ -648,8 +690,9 @@ discard block | ||
| 648 | 690 | $stripped_query = un_htmlspecialchars($smcFunc['strtolower']($stripped_query)); | 
| 649 | 691 | |
| 650 | 692 | // This (hidden) setting will do fulltext searching in the most basic way. | 
| 651 | - if (!empty($modSettings['search_simple_fulltext'])) | |
| 652 | -		$stripped_query = strtr($stripped_query, array('"' => '')); | |
| 693 | +	if (!empty($modSettings['search_simple_fulltext'])) { | |
| 694 | +			$stripped_query = strtr($stripped_query, array('"' => '')); | |
| 695 | + } | |
| 653 | 696 | |
| 654 | 697 |  	$no_regexp = preg_match('~&#(?:\d{1,7}|x[0-9a-fA-F]{1,6});~', $stripped_query) === 1; | 
| 655 | 698 | |
| @@ -672,8 +715,9 @@ discard block | ||
| 672 | 715 |  	{ | 
| 673 | 716 | if ($word === '-') | 
| 674 | 717 |  		{ | 
| 675 | - if (($word = trim($phraseArray[$index], '-_\' ')) !== '' && !in_array($word, $blacklisted_words)) | |
| 676 | - $excludedWords[] = $word; | |
| 718 | +			if (($word = trim($phraseArray[$index], '-_\' ')) !== '' && !in_array($word, $blacklisted_words)) { | |
| 719 | + $excludedWords[] = $word; | |
| 720 | + } | |
| 677 | 721 | unset($phraseArray[$index]); | 
| 678 | 722 | } | 
| 679 | 723 | } | 
| @@ -683,8 +727,9 @@ discard block | ||
| 683 | 727 |  	{ | 
| 684 | 728 | if (strpos(trim($word), '-') === 0) | 
| 685 | 729 |  		{ | 
| 686 | - if (($word = trim($word, '-_\' ')) !== '' && !in_array($word, $blacklisted_words)) | |
| 687 | - $excludedWords[] = $word; | |
| 730 | +			if (($word = trim($word, '-_\' ')) !== '' && !in_array($word, $blacklisted_words)) { | |
| 731 | + $excludedWords[] = $word; | |
| 732 | + } | |
| 688 | 733 | unset($wordArray[$index]); | 
| 689 | 734 | } | 
| 690 | 735 | } | 
| @@ -697,8 +742,9 @@ discard block | ||
| 697 | 742 | foreach ($searchArray as $index => $value) | 
| 698 | 743 |  	{ | 
| 699 | 744 | // Skip anything practically empty. | 
| 700 | - if (($searchArray[$index] = trim($value, '-_\' ')) === '') | |
| 701 | - unset($searchArray[$index]); | |
| 745 | +		if (($searchArray[$index] = trim($value, '-_\' ')) === '') { | |
| 746 | + unset($searchArray[$index]); | |
| 747 | + } | |
| 702 | 748 | // Skip blacklisted words. Make sure to note we skipped them in case we end up with nothing. | 
| 703 | 749 | elseif (in_array($searchArray[$index], $blacklisted_words)) | 
| 704 | 750 |  		{ | 
| @@ -716,31 +762,37 @@ discard block | ||
| 716 | 762 | |
| 717 | 763 | // Create an array of replacements for highlighting. | 
| 718 | 764 | $context['mark'] = array(); | 
| 719 | - foreach ($searchArray as $word) | |
| 720 | - $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; | |
| 765 | +	foreach ($searchArray as $word) { | |
| 766 | + $context['mark'][$word] = '<strong class="highlight">' . $word . '</strong>'; | |
| 767 | + } | |
| 721 | 768 | |
| 722 | 769 | // Initialize two arrays storing the words that have to be searched for. | 
| 723 | 770 | $orParts = array(); | 
| 724 | 771 | $searchWords = array(); | 
| 725 | 772 | |
| 726 | 773 | // Make sure at least one word is being searched for. | 
| 727 | - if (empty($searchArray)) | |
| 728 | - $context['search_errors']['invalid_search_string' . (!empty($foundBlackListedWords) ? '_blacklist' : '')] = true; | |
| 774 | +	if (empty($searchArray)) { | |
| 775 | + $context['search_errors']['invalid_search_string' . (!empty($foundBlackListedWords) ? '_blacklist' : '')] = true; | |
| 776 | + } | |
| 729 | 777 | // All words/sentences must match. | 
| 730 | - elseif (empty($search_params['searchtype'])) | |
| 731 | - $orParts[0] = $searchArray; | |
| 778 | +	elseif (empty($search_params['searchtype'])) { | |
| 779 | + $orParts[0] = $searchArray; | |
| 780 | + } | |
| 732 | 781 | // Any word/sentence must match. | 
| 733 | - else | |
| 734 | - foreach ($searchArray as $index => $value) | |
| 782 | +	else { | |
| 783 | + foreach ($searchArray as $index => $value) | |
| 735 | 784 | $orParts[$index] = array($value); | 
| 785 | + } | |
| 736 | 786 | |
| 737 | 787 | // Don't allow duplicate error messages if one string is too short. | 
| 738 | - if (isset($context['search_errors']['search_string_small_words'], $context['search_errors']['invalid_search_string'])) | |
| 739 | - unset($context['search_errors']['invalid_search_string']); | |
| 788 | +	if (isset($context['search_errors']['search_string_small_words'], $context['search_errors']['invalid_search_string'])) { | |
| 789 | + unset($context['search_errors']['invalid_search_string']); | |
| 790 | + } | |
| 740 | 791 | // Make sure the excluded words are in all or-branches. | 
| 741 | - foreach ($orParts as $orIndex => $andParts) | |
| 742 | - foreach ($excludedWords as $word) | |
| 792 | +	foreach ($orParts as $orIndex => $andParts) { | |
| 793 | + foreach ($excludedWords as $word) | |
| 743 | 794 | $orParts[$orIndex][] = $word; | 
| 795 | + } | |
| 744 | 796 | |
| 745 | 797 | // Determine the or-branches and the fulltext search words. | 
| 746 | 798 | foreach ($orParts as $orIndex => $andParts) | 
| @@ -754,8 +806,9 @@ discard block | ||
| 754 | 806 | ); | 
| 755 | 807 | |
| 756 | 808 | // Sort the indexed words (large words -> small words -> excluded words). | 
| 757 | -		if ($searchAPI->supportsMethod('searchSort')) | |
| 758 | - usort($orParts[$orIndex], 'searchSort'); | |
| 809 | +		if ($searchAPI->supportsMethod('searchSort')) { | |
| 810 | + usort($orParts[$orIndex], 'searchSort'); | |
| 811 | + } | |
| 759 | 812 | |
| 760 | 813 | foreach ($orParts[$orIndex] as $word) | 
| 761 | 814 |  		{ | 
| @@ -767,15 +820,17 @@ discard block | ||
| 767 | 820 | if (!$is_excluded || count($subjectWords) === 1) | 
| 768 | 821 |  			{ | 
| 769 | 822 | $searchWords[$orIndex]['subject_words'] = array_merge($searchWords[$orIndex]['subject_words'], $subjectWords); | 
| 770 | - if ($is_excluded) | |
| 771 | - $excludedSubjectWords = array_merge($excludedSubjectWords, $subjectWords); | |
| 823 | +				if ($is_excluded) { | |
| 824 | + $excludedSubjectWords = array_merge($excludedSubjectWords, $subjectWords); | |
| 825 | + } | |
| 826 | +			} else { | |
| 827 | + $excludedPhrases[] = $word; | |
| 772 | 828 | } | 
| 773 | - else | |
| 774 | - $excludedPhrases[] = $word; | |
| 775 | 829 | |
| 776 | 830 | // Have we got indexes to prepare? | 
| 777 | -			if ($searchAPI->supportsMethod('prepareIndexes')) | |
| 778 | - $searchAPI->prepareIndexes($word, $searchWords[$orIndex], $excludedIndexWords, $is_excluded); | |
| 831 | +			if ($searchAPI->supportsMethod('prepareIndexes')) { | |
| 832 | + $searchAPI->prepareIndexes($word, $searchWords[$orIndex], $excludedIndexWords, $is_excluded); | |
| 833 | + } | |
| 779 | 834 | } | 
| 780 | 835 | |
| 781 | 836 | // Search_force_index requires all AND parts to have at least one fulltext word. | 
| @@ -783,8 +838,7 @@ discard block | ||
| 783 | 838 |  		{ | 
| 784 | 839 | $context['search_errors']['query_not_specific_enough'] = true; | 
| 785 | 840 | break; | 
| 786 | - } | |
| 787 | - elseif ($search_params['subject_only'] && empty($searchWords[$orIndex]['subject_words']) && empty($excludedSubjectWords)) | |
| 841 | + } elseif ($search_params['subject_only'] && empty($searchWords[$orIndex]['subject_words']) && empty($excludedSubjectWords)) | |
| 788 | 842 |  		{ | 
| 789 | 843 | $context['search_errors']['query_not_specific_enough'] = true; | 
| 790 | 844 | break; | 
| @@ -812,8 +866,9 @@ discard block | ||
| 812 | 866 | $found_misspelling = false; | 
| 813 | 867 | foreach ($searchArray as $word) | 
| 814 | 868 |  		{ | 
| 815 | - if (empty($link)) | |
| 816 | - continue; | |
| 869 | +			if (empty($link)) { | |
| 870 | + continue; | |
| 871 | + } | |
| 817 | 872 | |
| 818 | 873 | // Don't check phrases. | 
| 819 | 874 |  			if (preg_match('~^\w+$~', $word) === 0) | 
| @@ -828,8 +883,7 @@ discard block | ||
| 828 | 883 | $did_you_mean['search'][] = $word; | 
| 829 | 884 | $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word); | 
| 830 | 885 | continue; | 
| 831 | - } | |
| 832 | - elseif (spell_check($link, $word)) | |
| 886 | + } elseif (spell_check($link, $word)) | |
| 833 | 887 |  			{ | 
| 834 | 888 | $did_you_mean['search'][] = $word; | 
| 835 | 889 | $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word); | 
| @@ -840,11 +894,13 @@ discard block | ||
| 840 | 894 | foreach ($suggestions as $i => $s) | 
| 841 | 895 |  			{ | 
| 842 | 896 | // Search is case insensitive. | 
| 843 | - if ($smcFunc['strtolower']($s) == $smcFunc['strtolower']($word)) | |
| 844 | - unset($suggestions[$i]); | |
| 897 | +				if ($smcFunc['strtolower']($s) == $smcFunc['strtolower']($word)) { | |
| 898 | + unset($suggestions[$i]); | |
| 899 | + } | |
| 845 | 900 | // Plus, don't suggest something the user thinks is rude! | 
| 846 | - elseif ($suggestions[$i] != censorText($s)) | |
| 847 | - unset($suggestions[$i]); | |
| 901 | +				elseif ($suggestions[$i] != censorText($s)) { | |
| 902 | + unset($suggestions[$i]); | |
| 903 | + } | |
| 848 | 904 | } | 
| 849 | 905 | |
| 850 | 906 | // Anything found? If so, correct it! | 
| @@ -854,8 +910,7 @@ discard block | ||
| 854 | 910 | $did_you_mean['search'][] = $suggestions[0]; | 
| 855 | 911 | $did_you_mean['display'][] = '<em><strong>' . $smcFunc['htmlspecialchars']($suggestions[0]) . '</strong></em>'; | 
| 856 | 912 | $found_misspelling = true; | 
| 857 | - } | |
| 858 | - else | |
| 913 | + } else | |
| 859 | 914 |  			{ | 
| 860 | 915 | $did_you_mean['search'][] = $word; | 
| 861 | 916 | $did_you_mean['display'][] = $smcFunc['htmlspecialchars']($word); | 
| @@ -872,8 +927,7 @@ discard block | ||
| 872 | 927 |  				{ | 
| 873 | 928 | $temp_excluded['search'][] = '-"' . $word . '"'; | 
| 874 | 929 | $temp_excluded['display'][] = '-"' . $smcFunc['htmlspecialchars']($word) . '"'; | 
| 875 | - } | |
| 876 | - else | |
| 930 | + } else | |
| 877 | 931 |  				{ | 
| 878 | 932 | $temp_excluded['search'][] = '-' . $word; | 
| 879 | 933 | $temp_excluded['display'][] = '-' . $smcFunc['htmlspecialchars']($word); | 
| @@ -885,11 +939,13 @@ discard block | ||
| 885 | 939 | |
| 886 | 940 | $temp_params = $search_params; | 
| 887 | 941 |  			$temp_params['search'] = implode(' ', $did_you_mean['search']); | 
| 888 | - if (isset($temp_params['brd'])) | |
| 889 | -				$temp_params['brd'] = implode(',', $temp_params['brd']); | |
| 942 | +			if (isset($temp_params['brd'])) { | |
| 943 | +							$temp_params['brd'] = implode(',', $temp_params['brd']); | |
| 944 | + } | |
| 890 | 945 | $context['params'] = array(); | 
| 891 | - foreach ($temp_params as $k => $v) | |
| 892 | - $context['did_you_mean_params'][] = $k . '|\'|' . $v; | |
| 946 | +			foreach ($temp_params as $k => $v) { | |
| 947 | + $context['did_you_mean_params'][] = $k . '|\'|' . $v; | |
| 948 | + } | |
| 893 | 949 |  			$context['did_you_mean_params'] = base64_encode(implode('|"|', $context['did_you_mean_params'])); | 
| 894 | 950 |  			$context['did_you_mean'] = implode(' ', $did_you_mean['display']); | 
| 895 | 951 | } | 
| @@ -897,18 +953,20 @@ discard block | ||
| 897 | 953 | |
| 898 | 954 | // Let the user adjust the search query, should they wish? | 
| 899 | 955 | $context['search_params'] = $search_params; | 
| 900 | - if (isset($context['search_params']['search'])) | |
| 901 | - $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); | |
| 902 | - if (isset($context['search_params']['userspec'])) | |
| 903 | - $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); | |
| 956 | +	if (isset($context['search_params']['search'])) { | |
| 957 | + $context['search_params']['search'] = $smcFunc['htmlspecialchars']($context['search_params']['search']); | |
| 958 | + } | |
| 959 | +	if (isset($context['search_params']['userspec'])) { | |
| 960 | + $context['search_params']['userspec'] = $smcFunc['htmlspecialchars']($context['search_params']['userspec']); | |
| 961 | + } | |
| 904 | 962 | |
| 905 | 963 | // Do we have captcha enabled? | 
| 906 | 964 | if ($user_info['is_guest'] && !empty($modSettings['search_enable_captcha']) && empty($_SESSION['ss_vv_passed']) && (empty($_SESSION['last_ss']) || $_SESSION['last_ss'] != $search_params['search'])) | 
| 907 | 965 |  	{ | 
| 908 | 966 | // If we come from another search box tone down the error... | 
| 909 | - if (!isset($_REQUEST['search_vv'])) | |
| 910 | - $context['search_errors']['need_verification_code'] = true; | |
| 911 | - else | |
| 967 | +		if (!isset($_REQUEST['search_vv'])) { | |
| 968 | + $context['search_errors']['need_verification_code'] = true; | |
| 969 | + } else | |
| 912 | 970 |  		{ | 
| 913 | 971 | require_once($sourcedir . '/Subs-Editor.php'); | 
| 914 | 972 | $verificationOptions = array( | 
| @@ -918,12 +976,14 @@ discard block | ||
| 918 | 976 | |
| 919 | 977 | if (is_array($context['require_verification'])) | 
| 920 | 978 |  			{ | 
| 921 | - foreach ($context['require_verification'] as $error) | |
| 922 | - $context['search_errors'][$error] = true; | |
| 979 | +				foreach ($context['require_verification'] as $error) { | |
| 980 | + $context['search_errors'][$error] = true; | |
| 981 | + } | |
| 923 | 982 | } | 
| 924 | 983 | // Don't keep asking for it - they've proven themselves worthy. | 
| 925 | - else | |
| 926 | - $_SESSION['ss_vv_passed'] = true; | |
| 984 | +			else { | |
| 985 | + $_SESSION['ss_vv_passed'] = true; | |
| 986 | + } | |
| 927 | 987 | } | 
| 928 | 988 | } | 
| 929 | 989 | |
| @@ -931,19 +991,22 @@ discard block | ||
| 931 | 991 | |
| 932 | 992 | // All search params have been checked, let's compile them to a single string... made less simple by PHP 4.3.9 and below. | 
| 933 | 993 | $temp_params = $search_params; | 
| 934 | - if (isset($temp_params['brd'])) | |
| 935 | -		$temp_params['brd'] = implode(',', $temp_params['brd']); | |
| 994 | +	if (isset($temp_params['brd'])) { | |
| 995 | +			$temp_params['brd'] = implode(',', $temp_params['brd']); | |
| 996 | + } | |
| 936 | 997 | $context['params'] = array(); | 
| 937 | - foreach ($temp_params as $k => $v) | |
| 938 | - $context['params'][] = $k . '|\'|' . $v; | |
| 998 | +	foreach ($temp_params as $k => $v) { | |
| 999 | + $context['params'][] = $k . '|\'|' . $v; | |
| 1000 | + } | |
| 939 | 1001 | |
| 940 | 1002 | if (!empty($context['params'])) | 
| 941 | 1003 |  	{ | 
| 942 | 1004 | // Due to old IE's 2083 character limit, we have to compress long search strings | 
| 943 | 1005 |  		$params = @gzcompress(implode('|"|', $context['params'])); | 
| 944 | 1006 | // Gzcompress failed, use try non-gz | 
| 945 | - if (empty($params)) | |
| 946 | -			$params = implode('|"|', $context['params']); | |
| 1007 | +		if (empty($params)) { | |
| 1008 | +					$params = implode('|"|', $context['params']); | |
| 1009 | + } | |
| 947 | 1010 | // Base64 encode, then replace +/= with uri safe ones that can be reverted | 
| 948 | 1011 |  		$context['params'] = str_replace(array('+', '/', '='), array('-', '_', '.'), base64_encode($params)); | 
| 949 | 1012 | } | 
| @@ -969,8 +1032,9 @@ discard block | ||
| 969 | 1032 | } | 
| 970 | 1033 | |
| 971 | 1034 | // Spam me not, Spam-a-lot? | 
| 972 | - if (empty($_SESSION['last_ss']) || $_SESSION['last_ss'] != $search_params['search']) | |
| 973 | -		spamProtection('search'); | |
| 1035 | +	if (empty($_SESSION['last_ss']) || $_SESSION['last_ss'] != $search_params['search']) { | |
| 1036 | +			spamProtection('search'); | |
| 1037 | + } | |
| 974 | 1038 | // Store the last search string to allow pages of results to be browsed. | 
| 975 | 1039 | $_SESSION['last_ss'] = $search_params['search']; | 
| 976 | 1040 | |
| @@ -1030,8 +1094,9 @@ discard block | ||
| 1030 | 1094 | 'where' => array(), | 
| 1031 | 1095 | ); | 
| 1032 | 1096 | |
| 1033 | - if ($modSettings['postmod_active']) | |
| 1034 | -						$subject_query['where'][] = 't.approved = {int:is_approved}'; | |
| 1097 | +					if ($modSettings['postmod_active']) { | |
| 1098 | +											$subject_query['where'][] = 't.approved = {int:is_approved}'; | |
| 1099 | + } | |
| 1035 | 1100 | |
| 1036 | 1101 | $numTables = 0; | 
| 1037 | 1102 | $prev_join = 0; | 
| @@ -1043,8 +1108,7 @@ discard block | ||
| 1043 | 1108 |  						{ | 
| 1044 | 1109 |  							$subject_query['left_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.word ' . (empty($modSettings['search_match_words']) ? 'LIKE {string:subject_words_' . $numTables . '_wild}' : '= {string:subject_words_' . $numTables . '}') . ' AND subj' . $numTables . '.id_topic = t.id_topic)'; | 
| 1045 | 1110 | $subject_query['where'][] = '(subj' . $numTables . '.word IS NULL)'; | 
| 1046 | - } | |
| 1047 | - else | |
| 1111 | + } else | |
| 1048 | 1112 |  						{ | 
| 1049 | 1113 |  							$subject_query['inner_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.id_topic = ' . ($prev_join === 0 ? 't' : 'subj' . $prev_join) . '.id_topic)'; | 
| 1050 | 1114 |  							$subject_query['where'][] = 'subj' . $numTables . '.word ' . (empty($modSettings['search_match_words']) ? 'LIKE {string:subject_words_' . $numTables . '_wild}' : '= {string:subject_words_' . $numTables . '}'); | 
| @@ -1062,14 +1126,18 @@ discard block | ||
| 1062 | 1126 | } | 
| 1063 | 1127 | $subject_query['where'][] = $userQuery; | 
| 1064 | 1128 | } | 
| 1065 | - if (!empty($search_params['topic'])) | |
| 1066 | - $subject_query['where'][] = 't.id_topic = ' . $search_params['topic']; | |
| 1067 | - if (!empty($minMsgID)) | |
| 1068 | - $subject_query['where'][] = 't.id_first_msg >= ' . $minMsgID; | |
| 1069 | - if (!empty($maxMsgID)) | |
| 1070 | - $subject_query['where'][] = 't.id_last_msg <= ' . $maxMsgID; | |
| 1071 | - if (!empty($boardQuery)) | |
| 1072 | - $subject_query['where'][] = 't.id_board ' . $boardQuery; | |
| 1129 | +					if (!empty($search_params['topic'])) { | |
| 1130 | + $subject_query['where'][] = 't.id_topic = ' . $search_params['topic']; | |
| 1131 | + } | |
| 1132 | +					if (!empty($minMsgID)) { | |
| 1133 | + $subject_query['where'][] = 't.id_first_msg >= ' . $minMsgID; | |
| 1134 | + } | |
| 1135 | +					if (!empty($maxMsgID)) { | |
| 1136 | + $subject_query['where'][] = 't.id_last_msg <= ' . $maxMsgID; | |
| 1137 | + } | |
| 1138 | +					if (!empty($boardQuery)) { | |
| 1139 | + $subject_query['where'][] = 't.id_board ' . $boardQuery; | |
| 1140 | + } | |
| 1073 | 1141 | if (!empty($excludedPhrases)) | 
| 1074 | 1142 |  					{ | 
| 1075 | 1143 |  						if ($subject_query['from'] != '{db_prefix}messages AS m') | 
| @@ -1089,8 +1157,9 @@ discard block | ||
| 1089 | 1157 | foreach ($weight_factors as $type => $value) | 
| 1090 | 1158 |  					{ | 
| 1091 | 1159 | $relevance .= $weight[$type]; | 
| 1092 | - if (!empty($value['results'])) | |
| 1093 | - $relevance .= ' * ' . $value['results']; | |
| 1160 | +						if (!empty($value['results'])) { | |
| 1161 | + $relevance .= ' * ' . $value['results']; | |
| 1162 | + } | |
| 1094 | 1163 | $relevance .= ' + '; | 
| 1095 | 1164 | } | 
| 1096 | 1165 | $relevance = substr($relevance, 0, -3) . ') / ' . $weight_total . ' AS relevance'; | 
| @@ -1128,20 +1197,23 @@ discard block | ||
| 1128 | 1197 | while ($row = $smcFunc['db_fetch_row']($ignoreRequest)) | 
| 1129 | 1198 |  						{ | 
| 1130 | 1199 | // No duplicates! | 
| 1131 | - if (isset($inserts[$row[1]])) | |
| 1132 | - continue; | |
| 1200 | +							if (isset($inserts[$row[1]])) { | |
| 1201 | + continue; | |
| 1202 | + } | |
| 1133 | 1203 | |
| 1134 | - foreach ($row as $key => $value) | |
| 1135 | - $inserts[$row[1]][] = (int) $row[$key]; | |
| 1204 | +							foreach ($row as $key => $value) { | |
| 1205 | + $inserts[$row[1]][] = (int) $row[$key]; | |
| 1206 | + } | |
| 1136 | 1207 | } | 
| 1137 | 1208 | $smcFunc['db_free_result']($ignoreRequest); | 
| 1138 | 1209 | $numSubjectResults = count($inserts); | 
| 1210 | +					} else { | |
| 1211 | + $numSubjectResults += $smcFunc['db_affected_rows'](); | |
| 1139 | 1212 | } | 
| 1140 | - else | |
| 1141 | - $numSubjectResults += $smcFunc['db_affected_rows'](); | |
| 1142 | 1213 | |
| 1143 | - if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results']) | |
| 1144 | - break; | |
| 1214 | +					if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results']) { | |
| 1215 | + break; | |
| 1216 | + } | |
| 1145 | 1217 | } | 
| 1146 | 1218 | |
| 1147 | 1219 | // If there's data to be inserted for non-IGNORE databases do it here! | 
| @@ -1156,8 +1228,7 @@ discard block | ||
| 1156 | 1228 | } | 
| 1157 | 1229 | |
| 1158 | 1230 | $_SESSION['search_cache']['num_results'] = $numSubjectResults; | 
| 1159 | - } | |
| 1160 | - else | |
| 1231 | + } else | |
| 1161 | 1232 |  			{ | 
| 1162 | 1233 | $main_query = array( | 
| 1163 | 1234 | 'select' => array( | 
| @@ -1189,8 +1260,7 @@ discard block | ||
| 1189 | 1260 | $main_query['weights'] = $weight_factors; | 
| 1190 | 1261 | |
| 1191 | 1262 | $main_query['group_by'][] = 't.id_topic'; | 
| 1192 | - } | |
| 1193 | - else | |
| 1263 | + } else | |
| 1194 | 1264 |  				{ | 
| 1195 | 1265 | // This is outrageous! | 
| 1196 | 1266 | $main_query['select']['id_topic'] = 'm.id_msg AS id_topic'; | 
| @@ -1211,8 +1281,9 @@ discard block | ||
| 1211 | 1281 |  						$main_query['where'][] = 't.id_topic = {int:topic}'; | 
| 1212 | 1282 | $main_query['parameters']['topic'] = $search_params['topic']; | 
| 1213 | 1283 | } | 
| 1214 | - if (!empty($search_params['show_complete'])) | |
| 1215 | - $main_query['group_by'][] = 'm.id_msg, t.id_first_msg, t.id_last_msg'; | |
| 1284 | +					if (!empty($search_params['show_complete'])) { | |
| 1285 | + $main_query['group_by'][] = 'm.id_msg, t.id_first_msg, t.id_last_msg'; | |
| 1286 | + } | |
| 1216 | 1287 | } | 
| 1217 | 1288 | |
| 1218 | 1289 | // *** Get the subject results. | 
| @@ -1239,14 +1310,15 @@ discard block | ||
| 1239 | 1310 | ) !== false; | 
| 1240 | 1311 | |
| 1241 | 1312 | // Clean up some previous cache. | 
| 1242 | - if (!$createTemporary) | |
| 1243 | -						$smcFunc['db_search_query']('delete_log_search_topics', ' | |
| 1313 | +					if (!$createTemporary) { | |
| 1314 | +											$smcFunc['db_search_query']('delete_log_search_topics', ' | |
| 1244 | 1315 |  							DELETE FROM {db_prefix}log_search_topics | 
| 1245 | 1316 |  							WHERE id_search = {int:search_id}', | 
| 1246 | 1317 | array( | 
| 1247 | 1318 | 'search_id' => $_SESSION['search_cache']['id_search'], | 
| 1248 | 1319 | ) | 
| 1249 | 1320 | ); | 
| 1321 | + } | |
| 1250 | 1322 | |
| 1251 | 1323 | foreach ($searchWords as $orIndex => $words) | 
| 1252 | 1324 |  					{ | 
| @@ -1278,8 +1350,7 @@ discard block | ||
| 1278 | 1350 | $subject_query['where'][] = '(subj' . $numTables . '.word IS NULL)'; | 
| 1279 | 1351 |  								$subject_query['where'][] = 'm.body NOT ' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:body_not_' . $count . '}'; | 
| 1280 | 1352 |  								$subject_query['params']['body_not_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($subjectWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $subjectWord), '\\\'') . '[[:>:]]'; | 
| 1281 | - } | |
| 1282 | - else | |
| 1353 | + } else | |
| 1283 | 1354 |  							{ | 
| 1284 | 1355 |  								$subject_query['inner_join'][] = '{db_prefix}log_search_subjects AS subj' . $numTables . ' ON (subj' . $numTables . '.id_topic = ' . ($prev_join === 0 ? 't' : 'subj' . $prev_join) . '.id_topic)'; | 
| 1285 | 1356 |  								$subject_query['where'][] = 'subj' . $numTables . '.word LIKE {string:subject_like_' . $count . '}'; | 
| @@ -1334,8 +1405,9 @@ discard block | ||
| 1334 | 1405 |  						call_integration_hook('integrate_subject_search_query', array(&$subject_query)); | 
| 1335 | 1406 | |
| 1336 | 1407 | // Nothing to search for? | 
| 1337 | - if (empty($subject_query['where'])) | |
| 1338 | - continue; | |
| 1408 | +						if (empty($subject_query['where'])) { | |
| 1409 | + continue; | |
| 1410 | + } | |
| 1339 | 1411 | |
| 1340 | 1412 |  						$ignoreRequest = $smcFunc['db_search_query']('insert_log_search_topics', ($smcFunc['db_support_ignore'] ? ( ' | 
| 1341 | 1413 |  							INSERT IGNORE INTO {db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics | 
| @@ -1358,19 +1430,21 @@ discard block | ||
| 1358 | 1430 |  							{ | 
| 1359 | 1431 | $ind = $createTemporary ? 0 : 1; | 
| 1360 | 1432 | // No duplicates! | 
| 1361 | - if (isset($inserts[$row[$ind]])) | |
| 1362 | - continue; | |
| 1433 | +								if (isset($inserts[$row[$ind]])) { | |
| 1434 | + continue; | |
| 1435 | + } | |
| 1363 | 1436 | |
| 1364 | 1437 | $inserts[$row[$ind]] = $row; | 
| 1365 | 1438 | } | 
| 1366 | 1439 | $smcFunc['db_free_result']($ignoreRequest); | 
| 1367 | 1440 | $numSubjectResults = count($inserts); | 
| 1441 | +						} else { | |
| 1442 | + $numSubjectResults += $smcFunc['db_affected_rows'](); | |
| 1368 | 1443 | } | 
| 1369 | - else | |
| 1370 | - $numSubjectResults += $smcFunc['db_affected_rows'](); | |
| 1371 | 1444 | |
| 1372 | - if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results']) | |
| 1373 | - break; | |
| 1445 | +						if (!empty($modSettings['search_max_results']) && $numSubjectResults >= $modSettings['search_max_results']) { | |
| 1446 | + break; | |
| 1447 | + } | |
| 1374 | 1448 | } | 
| 1375 | 1449 | |
| 1376 | 1450 | // Got some non-MySQL data to plonk in? | 
| @@ -1388,8 +1462,9 @@ discard block | ||
| 1388 | 1462 |  					{ | 
| 1389 | 1463 | $main_query['weights']['subject']['search'] = 'CASE WHEN MAX(lst.id_topic) IS NULL THEN 0 ELSE 1 END'; | 
| 1390 | 1464 |  						$main_query['left_join'][] = '{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_topics AS lst ON (' . ($createTemporary ? '' : 'lst.id_search = {int:id_search} AND ') . 'lst.id_topic = t.id_topic)'; | 
| 1391 | - if (!$createTemporary) | |
| 1392 | - $main_query['parameters']['id_search'] = $_SESSION['search_cache']['id_search']; | |
| 1465 | +						if (!$createTemporary) { | |
| 1466 | + $main_query['parameters']['id_search'] = $_SESSION['search_cache']['id_search']; | |
| 1467 | + } | |
| 1393 | 1468 | } | 
| 1394 | 1469 | } | 
| 1395 | 1470 | |
| @@ -1417,14 +1492,15 @@ discard block | ||
| 1417 | 1492 | ) !== false; | 
| 1418 | 1493 | |
| 1419 | 1494 | // Clear, all clear! | 
| 1420 | - if (!$createTemporary) | |
| 1421 | -						$smcFunc['db_search_query']('delete_log_search_messages', ' | |
| 1495 | +					if (!$createTemporary) { | |
| 1496 | +											$smcFunc['db_search_query']('delete_log_search_messages', ' | |
| 1422 | 1497 |  							DELETE FROM {db_prefix}log_search_messages | 
| 1423 | 1498 |  							WHERE id_search = {int:id_search}', | 
| 1424 | 1499 | array( | 
| 1425 | 1500 | 'id_search' => $_SESSION['search_cache']['id_search'], | 
| 1426 | 1501 | ) | 
| 1427 | 1502 | ); | 
| 1503 | + } | |
| 1428 | 1504 | |
| 1429 | 1505 | foreach ($searchWords as $orIndex => $words) | 
| 1430 | 1506 |  					{ | 
| @@ -1458,19 +1534,21 @@ discard block | ||
| 1458 | 1534 | while ($row = $smcFunc['db_fetch_row']($ignoreRequest)) | 
| 1459 | 1535 |  								{ | 
| 1460 | 1536 | // No duplicates! | 
| 1461 | - if (isset($inserts[$row[0]])) | |
| 1462 | - continue; | |
| 1537 | +									if (isset($inserts[$row[0]])) { | |
| 1538 | + continue; | |
| 1539 | + } | |
| 1463 | 1540 | |
| 1464 | 1541 | $inserts[$row[0]] = $row; | 
| 1465 | 1542 | } | 
| 1466 | 1543 | $smcFunc['db_free_result']($ignoreRequest); | 
| 1467 | 1544 | $indexedResults = count($inserts); | 
| 1545 | +							} else { | |
| 1546 | + $indexedResults += $smcFunc['db_affected_rows'](); | |
| 1468 | 1547 | } | 
| 1469 | - else | |
| 1470 | - $indexedResults += $smcFunc['db_affected_rows'](); | |
| 1471 | 1548 | |
| 1472 | - if (!empty($maxMessageResults) && $indexedResults >= $maxMessageResults) | |
| 1473 | - break; | |
| 1549 | +							if (!empty($maxMessageResults) && $indexedResults >= $maxMessageResults) { | |
| 1550 | + break; | |
| 1551 | + } | |
| 1474 | 1552 | } | 
| 1475 | 1553 | } | 
| 1476 | 1554 | |
| @@ -1490,8 +1568,7 @@ discard block | ||
| 1490 | 1568 | $context['search_errors']['query_not_specific_enough'] = true; | 
| 1491 | 1569 | $_REQUEST['params'] = $context['params']; | 
| 1492 | 1570 | return PlushSearch1(); | 
| 1493 | - } | |
| 1494 | - elseif (!empty($indexedResults)) | |
| 1571 | + } elseif (!empty($indexedResults)) | |
| 1495 | 1572 |  					{ | 
| 1496 | 1573 |  						$main_query['inner_join'][] = '{db_prefix}' . ($createTemporary ? 'tmp_' : '') . 'log_search_messages AS lsm ON (lsm.id_msg = m.id_msg)'; | 
| 1497 | 1574 | if (!$createTemporary) | 
| @@ -1513,15 +1590,18 @@ discard block | ||
| 1513 | 1590 | foreach ($words['all_words'] as $regularWord) | 
| 1514 | 1591 |  						{ | 
| 1515 | 1592 |  							$where[] = 'm.body' . (in_array($regularWord, $excludedWords) ? ' NOT' : '') . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:all_word_body_' . $count . '}'; | 
| 1516 | - if (in_array($regularWord, $excludedWords)) | |
| 1517 | -								$where[] = 'm.subject NOT' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:all_word_body_' . $count . '}'; | |
| 1593 | +							if (in_array($regularWord, $excludedWords)) { | |
| 1594 | +															$where[] = 'm.subject NOT' . (empty($modSettings['search_match_words']) || $no_regexp ? ' LIKE ' : ' RLIKE ') . '{string:all_word_body_' . $count . '}'; | |
| 1595 | + } | |
| 1518 | 1596 |  							$main_query['parameters']['all_word_body_' . $count++] = empty($modSettings['search_match_words']) || $no_regexp ? '%' . strtr($regularWord, array('_' => '\\_', '%' => '\\%')) . '%' : '[[:<:]]' . addcslashes(preg_replace(array('/([\[\]$.+*?|{}()])/'), array('[$1]'), $regularWord), '\\\'') . '[[:>:]]'; | 
| 1519 | 1597 | } | 
| 1520 | - if (!empty($where)) | |
| 1521 | -							$orWhere[] = count($where) > 1 ? '(' . implode(' AND ', $where) . ')' : $where[0]; | |
| 1598 | +						if (!empty($where)) { | |
| 1599 | +													$orWhere[] = count($where) > 1 ? '(' . implode(' AND ', $where) . ')' : $where[0]; | |
| 1600 | + } | |
| 1601 | + } | |
| 1602 | +					if (!empty($orWhere)) { | |
| 1603 | +											$main_query['where'][] = count($orWhere) > 1 ? '(' . implode(' OR ', $orWhere) . ')' : $orWhere[0]; | |
| 1522 | 1604 | } | 
| 1523 | - if (!empty($orWhere)) | |
| 1524 | -						$main_query['where'][] = count($orWhere) > 1 ? '(' . implode(' OR ', $orWhere) . ')' : $orWhere[0]; | |
| 1525 | 1605 | |
| 1526 | 1606 | if (!empty($userQuery)) | 
| 1527 | 1607 |  					{ | 
| @@ -1559,8 +1639,9 @@ discard block | ||
| 1559 | 1639 | foreach ($main_query['weights'] as $type => $value) | 
| 1560 | 1640 |  					{ | 
| 1561 | 1641 | $relevance .= $weight[$type]; | 
| 1562 | - if (!empty($value['search'])) | |
| 1563 | - $relevance .= ' * ' . $value['search']; | |
| 1642 | +						if (!empty($value['search'])) { | |
| 1643 | + $relevance .= ' * ' . $value['search']; | |
| 1644 | + } | |
| 1564 | 1645 | $relevance .= ' + '; | 
| 1565 | 1646 | $new_weight_total += $weight[$type]; | 
| 1566 | 1647 | } | 
| @@ -1591,11 +1672,13 @@ discard block | ||
| 1591 | 1672 | while ($row = $smcFunc['db_fetch_row']($ignoreRequest)) | 
| 1592 | 1673 |  						{ | 
| 1593 | 1674 | // No duplicates! | 
| 1594 | - if (isset($inserts[$row[2]])) | |
| 1595 | - continue; | |
| 1675 | +							if (isset($inserts[$row[2]])) { | |
| 1676 | + continue; | |
| 1677 | + } | |
| 1596 | 1678 | |
| 1597 | - foreach ($row as $key => $value) | |
| 1598 | - $inserts[$row[2]][] = (int) $row[$key]; | |
| 1679 | +							foreach ($row as $key => $value) { | |
| 1680 | + $inserts[$row[2]][] = (int) $row[$key]; | |
| 1681 | + } | |
| 1599 | 1682 | } | 
| 1600 | 1683 | $smcFunc['db_free_result']($ignoreRequest); | 
| 1601 | 1684 | |
| @@ -1603,8 +1686,9 @@ discard block | ||
| 1603 | 1686 | if (!empty($inserts)) | 
| 1604 | 1687 |  						{ | 
| 1605 | 1688 | $query_columns = array(); | 
| 1606 | - foreach ($main_query['select'] as $k => $v) | |
| 1607 | - $query_columns[$k] = 'int'; | |
| 1689 | +							foreach ($main_query['select'] as $k => $v) { | |
| 1690 | + $query_columns[$k] = 'int'; | |
| 1691 | + } | |
| 1608 | 1692 | |
| 1609 | 1693 |  							$smcFunc['db_insert']('', | 
| 1610 | 1694 |  								'{db_prefix}log_search_results', | 
| @@ -1614,21 +1698,23 @@ discard block | ||
| 1614 | 1698 | ); | 
| 1615 | 1699 | } | 
| 1616 | 1700 | $_SESSION['search_cache']['num_results'] += count($inserts); | 
| 1701 | +					} else { | |
| 1702 | + $_SESSION['search_cache']['num_results'] = $smcFunc['db_affected_rows'](); | |
| 1617 | 1703 | } | 
| 1618 | - else | |
| 1619 | - $_SESSION['search_cache']['num_results'] = $smcFunc['db_affected_rows'](); | |
| 1620 | 1704 | } | 
| 1621 | 1705 | |
| 1622 | 1706 | // Insert subject-only matches. | 
| 1623 | 1707 | if ($_SESSION['search_cache']['num_results'] < $modSettings['search_max_results'] && $numSubjectResults !== 0) | 
| 1624 | 1708 |  				{ | 
| 1625 | 1709 |  					$relevance = '1000 * ('; | 
| 1626 | - foreach ($weight_factors as $type => $value) | |
| 1627 | - if (isset($value['results'])) | |
| 1710 | +					foreach ($weight_factors as $type => $value) { | |
| 1711 | + if (isset($value['results'])) | |
| 1628 | 1712 |  						{ | 
| 1629 | 1713 | $relevance .= $weight[$type]; | 
| 1630 | - if (!empty($value['results'])) | |
| 1631 | - $relevance .= ' * ' . $value['results']; | |
| 1714 | + } | |
| 1715 | +							if (!empty($value['results'])) { | |
| 1716 | + $relevance .= ' * ' . $value['results']; | |
| 1717 | + } | |
| 1632 | 1718 | $relevance .= ' + '; | 
| 1633 | 1719 | } | 
| 1634 | 1720 | $relevance = substr($relevance, 0, -3) . ') / ' . $weight_total . ' AS relevance'; | 
| @@ -1662,8 +1748,9 @@ discard block | ||
| 1662 | 1748 | while ($row = $smcFunc['db_fetch_row']($ignoreRequest)) | 
| 1663 | 1749 |  						{ | 
| 1664 | 1750 | // No duplicates! | 
| 1665 | - if (isset($usedIDs[$row[1]])) | |
| 1666 | - continue; | |
| 1751 | +							if (isset($usedIDs[$row[1]])) { | |
| 1752 | + continue; | |
| 1753 | + } | |
| 1667 | 1754 | |
| 1668 | 1755 | $usedIDs[$row[1]] = true; | 
| 1669 | 1756 | $inserts[] = $row; | 
| @@ -1681,12 +1768,12 @@ discard block | ||
| 1681 | 1768 | ); | 
| 1682 | 1769 | } | 
| 1683 | 1770 | $_SESSION['search_cache']['num_results'] += count($inserts); | 
| 1771 | +					} else { | |
| 1772 | + $_SESSION['search_cache']['num_results'] += $smcFunc['db_affected_rows'](); | |
| 1684 | 1773 | } | 
| 1685 | - else | |
| 1686 | - $_SESSION['search_cache']['num_results'] += $smcFunc['db_affected_rows'](); | |
| 1774 | +				} elseif ($_SESSION['search_cache']['num_results'] == -1) { | |
| 1775 | + $_SESSION['search_cache']['num_results'] = 0; | |
| 1687 | 1776 | } | 
| 1688 | - elseif ($_SESSION['search_cache']['num_results'] == -1) | |
| 1689 | - $_SESSION['search_cache']['num_results'] = 0; | |
| 1690 | 1777 | } | 
| 1691 | 1778 | } | 
| 1692 | 1779 | |
| @@ -1756,14 +1843,16 @@ discard block | ||
| 1756 | 1843 | ) | 
| 1757 | 1844 | ); | 
| 1758 | 1845 | $posters = array(); | 
| 1759 | - while ($row = $smcFunc['db_fetch_assoc']($request)) | |
| 1760 | - $posters[] = $row['id_member']; | |
| 1846 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | |
| 1847 | + $posters[] = $row['id_member']; | |
| 1848 | + } | |
| 1761 | 1849 | $smcFunc['db_free_result']($request); | 
| 1762 | 1850 | |
| 1763 | 1851 |  		call_integration_hook('integrate_search_message_list', array(&$msg_list, &$posters)); | 
| 1764 | 1852 | |
| 1765 | - if (!empty($posters)) | |
| 1766 | - loadMemberData(array_unique($posters)); | |
| 1853 | +		if (!empty($posters)) { | |
| 1854 | + loadMemberData(array_unique($posters)); | |
| 1855 | + } | |
| 1767 | 1856 | |
| 1768 | 1857 | // Get the messages out for the callback - select enough that it can be made to look just like Display. | 
| 1769 | 1858 |  		$messages_request = $smcFunc['db_query']('', ' | 
| @@ -1797,8 +1886,9 @@ discard block | ||
| 1797 | 1886 | ); | 
| 1798 | 1887 | |
| 1799 | 1888 | // If there are no results that means the things in the cache got deleted, so pretend we have no topics anymore. | 
| 1800 | - if ($smcFunc['db_num_rows']($messages_request) == 0) | |
| 1801 | - $context['topics'] = array(); | |
| 1889 | +		if ($smcFunc['db_num_rows']($messages_request) == 0) { | |
| 1890 | + $context['topics'] = array(); | |
| 1891 | + } | |
| 1802 | 1892 | |
| 1803 | 1893 | // If we want to know who participated in what then load this now. | 
| 1804 | 1894 | if (!empty($modSettings['enableParticipation']) && !$user_info['is_guest']) | 
| @@ -1816,8 +1906,9 @@ discard block | ||
| 1816 | 1906 | 'limit' => count($participants), | 
| 1817 | 1907 | ) | 
| 1818 | 1908 | ); | 
| 1819 | - while ($row = $smcFunc['db_fetch_assoc']($result)) | |
| 1820 | - $participants[$row['id_topic']] = true; | |
| 1909 | +			while ($row = $smcFunc['db_fetch_assoc']($result)) { | |
| 1910 | + $participants[$row['id_topic']] = true; | |
| 1911 | + } | |
| 1821 | 1912 | $smcFunc['db_free_result']($result); | 
| 1822 | 1913 | } | 
| 1823 | 1914 | } | 
| @@ -1826,15 +1917,17 @@ discard block | ||
| 1826 | 1917 | $context['page_index'] = constructPageIndex($scripturl . '?action=search2;params=' . $context['params'], $_REQUEST['start'], $num_results, $modSettings['search_results_per_page'], false); | 
| 1827 | 1918 | |
| 1828 | 1919 | // Consider the search complete! | 
| 1829 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) | |
| 1830 | -		cache_put_data('search_start:' . ($user_info['is_guest'] ? $user_info['ip'] : $user_info['id']), null, 90); | |
| 1920 | +	if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) { | |
| 1921 | +			cache_put_data('search_start:' . ($user_info['is_guest'] ? $user_info['ip'] : $user_info['id']), null, 90); | |
| 1922 | + } | |
| 1831 | 1923 | |
| 1832 | 1924 | $context['key_words'] = &$searchArray; | 
| 1833 | 1925 | |
| 1834 | 1926 | // Setup the default topic icons... for checking they exist and the like! | 
| 1835 | 1927 | $context['icon_sources'] = array(); | 
| 1836 | - foreach ($context['stable_icons'] as $icon) | |
| 1837 | - $context['icon_sources'][$icon] = 'images_url'; | |
| 1928 | +	foreach ($context['stable_icons'] as $icon) { | |
| 1929 | + $context['icon_sources'][$icon] = 'images_url'; | |
| 1930 | + } | |
| 1838 | 1931 | |
| 1839 | 1932 | $context['sub_template'] = 'results'; | 
| 1840 | 1933 | $context['page_title'] = $txt['search_results']; | 
| @@ -1865,26 +1958,31 @@ discard block | ||
| 1865 | 1958 | global $boards_can, $participants, $smcFunc; | 
| 1866 | 1959 | static $recycle_board = null; | 
| 1867 | 1960 | |
| 1868 | - if ($recycle_board === null) | |
| 1869 | - $recycle_board = !empty($modSettings['recycle_enable']) && !empty($modSettings['recycle_board']) ? (int) $modSettings['recycle_board'] : 0; | |
| 1961 | +	if ($recycle_board === null) { | |
| 1962 | + $recycle_board = !empty($modSettings['recycle_enable']) && !empty($modSettings['recycle_board']) ? (int) $modSettings['recycle_board'] : 0; | |
| 1963 | + } | |
| 1870 | 1964 | |
| 1871 | 1965 | // Remember which message this is. (ie. reply #83) | 
| 1872 | 1966 | static $counter = null; | 
| 1873 | - if ($counter == null || $reset) | |
| 1874 | - $counter = $_REQUEST['start'] + 1; | |
| 1967 | +	if ($counter == null || $reset) { | |
| 1968 | + $counter = $_REQUEST['start'] + 1; | |
| 1969 | + } | |
| 1875 | 1970 | |
| 1876 | 1971 | // If the query returned false, bail. | 
| 1877 | - if ($messages_request == false) | |
| 1878 | - return false; | |
| 1972 | +	if ($messages_request == false) { | |
| 1973 | + return false; | |
| 1974 | + } | |
| 1879 | 1975 | |
| 1880 | 1976 | // Start from the beginning... | 
| 1881 | - if ($reset) | |
| 1882 | - return @$smcFunc['db_data_seek']($messages_request, 0); | |
| 1977 | +	if ($reset) { | |
| 1978 | + return @$smcFunc['db_data_seek']($messages_request, 0); | |
| 1979 | + } | |
| 1883 | 1980 | |
| 1884 | 1981 | // Attempt to get the next message. | 
| 1885 | 1982 | $message = $smcFunc['db_fetch_assoc']($messages_request); | 
| 1886 | - if (!$message) | |
| 1887 | - return false; | |
| 1983 | +	if (!$message) { | |
| 1984 | + return false; | |
| 1985 | + } | |
| 1888 | 1986 | |
| 1889 | 1987 | // Can't have an empty subject can we? | 
| 1890 | 1988 | $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject']; | 
| @@ -1923,9 +2021,9 @@ discard block | ||
| 1923 | 2021 | |
| 1924 | 2022 | if ($smcFunc['strlen']($message['body']) > $charLimit) | 
| 1925 | 2023 |  		{ | 
| 1926 | - if (empty($context['key_words'])) | |
| 1927 | - $message['body'] = $smcFunc['substr']($message['body'], 0, $charLimit) . '<strong>...</strong>'; | |
| 1928 | - else | |
| 2024 | +			if (empty($context['key_words'])) { | |
| 2025 | + $message['body'] = $smcFunc['substr']($message['body'], 0, $charLimit) . '<strong>...</strong>'; | |
| 2026 | + } else | |
| 1929 | 2027 |  			{ | 
| 1930 | 2028 | $matchString = ''; | 
| 1931 | 2029 | $force_partial_word = false; | 
| @@ -1934,18 +2032,20 @@ discard block | ||
| 1934 | 2032 | $keyword = un_htmlspecialchars($keyword); | 
| 1935 | 2033 |  					$keyword = preg_replace_callback('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'entity_fix__callback', strtr($keyword, array('\\\'' => '\'', '&' => '&'))); | 
| 1936 | 2034 | |
| 1937 | -					if (preg_match('~[\'\.,/@%&;:(){}\[\]_\-+\\\\]$~', $keyword) != 0 || preg_match('~^[\'\.,/@%&;:(){}\[\]_\-+\\\\]~', $keyword) != 0) | |
| 1938 | - $force_partial_word = true; | |
| 2035 | +					if (preg_match('~[\'\.,/@%&;:(){}\[\]_\-+\\\\]$~', $keyword) != 0 || preg_match('~^[\'\.,/@%&;:(){}\[\]_\-+\\\\]~', $keyword) != 0) { | |
| 2036 | + $force_partial_word = true; | |
| 2037 | + } | |
| 1939 | 2038 |  					$matchString .= strtr(preg_quote($keyword, '/'), array('\*' => '.+?')) . '|'; | 
| 1940 | 2039 | } | 
| 1941 | 2040 | $matchString = un_htmlspecialchars(substr($matchString, 0, -1)); | 
| 1942 | 2041 | |
| 1943 | 2042 |  				$message['body'] = un_htmlspecialchars(strtr($message['body'], array(' ' => ' ', '<br>' => "\n", '[' => '[', ']' => ']', ':' => ':', '@' => '@'))); | 
| 1944 | 2043 | |
| 1945 | - if (empty($modSettings['search_method']) || $force_partial_word) | |
| 1946 | -					preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?|^)(' . $matchString . ')(.{0,' . $charLimit . '}[\s\W]|[^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches); | |
| 1947 | - else | |
| 1948 | -					preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?[\s\W]|^)(' . $matchString . ')([\s\W].{0,' . $charLimit . '}[\s\W]|[\s\W][^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches); | |
| 2044 | +				if (empty($modSettings['search_method']) || $force_partial_word) { | |
| 2045 | +									preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?|^)(' . $matchString . ')(.{0,' . $charLimit . '}[\s\W]|[^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches); | |
| 2046 | +				} else { | |
| 2047 | +									preg_match_all('/([^\s\W]{' . $charLimit . '}[\s\W]|[\s\W].{0,' . $charLimit . '}?[\s\W]|^)(' . $matchString . ')([\s\W].{0,' . $charLimit . '}[\s\W]|[\s\W][^\s\W]{0,' . $charLimit . '})/is' . ($context['utf8'] ? 'u' : ''), $message['body'], $matches); | |
| 2048 | + } | |
| 1949 | 2049 | |
| 1950 | 2050 | $message['body'] = ''; | 
| 1951 | 2051 | foreach ($matches[0] as $index => $match) | 
| @@ -1958,8 +2058,7 @@ discard block | ||
| 1958 | 2058 | // Re-fix the international characters. | 
| 1959 | 2059 |  			$message['body'] = preg_replace_callback('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'entity_fix__callback', $message['body']); | 
| 1960 | 2060 | } | 
| 1961 | - } | |
| 1962 | - else | |
| 2061 | + } else | |
| 1963 | 2062 |  	{ | 
| 1964 | 2063 | // Run BBC interpreter on the message. | 
| 1965 | 2064 | $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']); | 
| @@ -1978,21 +2077,26 @@ discard block | ||
| 1978 | 2077 | // Sadly, we need to check the icon ain't broke. | 
| 1979 | 2078 | if (!empty($modSettings['messageIconChecks_enable'])) | 
| 1980 | 2079 |  	{ | 
| 1981 | - if (!isset($context['icon_sources'][$message['first_icon']])) | |
| 1982 | - $context['icon_sources'][$message['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 1983 | - if (!isset($context['icon_sources'][$message['last_icon']])) | |
| 1984 | - $context['icon_sources'][$message['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 1985 | - if (!isset($context['icon_sources'][$message['icon']])) | |
| 1986 | - $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 1987 | - } | |
| 1988 | - else | |
| 2080 | +		if (!isset($context['icon_sources'][$message['first_icon']])) { | |
| 2081 | + $context['icon_sources'][$message['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 2082 | + } | |
| 2083 | +		if (!isset($context['icon_sources'][$message['last_icon']])) { | |
| 2084 | + $context['icon_sources'][$message['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 2085 | + } | |
| 2086 | +		if (!isset($context['icon_sources'][$message['icon']])) { | |
| 2087 | + $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; | |
| 2088 | + } | |
| 2089 | + } else | |
| 1989 | 2090 |  	{ | 
| 1990 | - if (!isset($context['icon_sources'][$message['first_icon']])) | |
| 1991 | - $context['icon_sources'][$message['first_icon']] = 'images_url'; | |
| 1992 | - if (!isset($context['icon_sources'][$message['last_icon']])) | |
| 1993 | - $context['icon_sources'][$message['last_icon']] = 'images_url'; | |
| 1994 | - if (!isset($context['icon_sources'][$message['icon']])) | |
| 1995 | - $context['icon_sources'][$message['icon']] = 'images_url'; | |
| 2091 | +		if (!isset($context['icon_sources'][$message['first_icon']])) { | |
| 2092 | + $context['icon_sources'][$message['first_icon']] = 'images_url'; | |
| 2093 | + } | |
| 2094 | +		if (!isset($context['icon_sources'][$message['last_icon']])) { | |
| 2095 | + $context['icon_sources'][$message['last_icon']] = 'images_url'; | |
| 2096 | + } | |
| 2097 | +		if (!isset($context['icon_sources'][$message['icon']])) { | |
| 2098 | + $context['icon_sources'][$message['icon']] = 'images_url'; | |
| 2099 | + } | |
| 1996 | 2100 | } | 
| 1997 | 2101 | |
| 1998 | 2102 | // Do we have quote tag enabled? | 
| @@ -2002,12 +2106,14 @@ discard block | ||
| 2002 | 2106 | $colorClass = 'windowbg'; | 
| 2003 | 2107 | |
| 2004 | 2108 | // Sticky topics should get a different color, too. | 
| 2005 | - if ($message['is_sticky']) | |
| 2006 | - $colorClass .= ' sticky'; | |
| 2109 | +	if ($message['is_sticky']) { | |
| 2110 | + $colorClass .= ' sticky'; | |
| 2111 | + } | |
| 2007 | 2112 | |
| 2008 | 2113 | // Locked topics get special treatment as well. | 
| 2009 | - if ($message['locked']) | |
| 2010 | - $colorClass .= ' locked'; | |
| 2114 | +	if ($message['locked']) { | |
| 2115 | + $colorClass .= ' locked'; | |
| 2116 | + } | |
| 2011 | 2117 | |
| 2012 | 2118 | $output = array_merge($context['topics'][$message['id_msg']], array( | 
| 2013 | 2119 | 'id' => $message['id_topic'], | 
| @@ -2151,8 +2257,9 @@ discard block | ||
| 2151 | 2257 | |
| 2152 | 2258 | // Load up the search API we are going to use. | 
| 2153 | 2259 | $modSettings['search_index'] = empty($modSettings['search_index']) ? 'standard' : $modSettings['search_index']; | 
| 2154 | - if (!file_exists($sourcedir . '/SearchAPI-' . ucwords($modSettings['search_index']) . '.php')) | |
| 2155 | -		fatal_lang_error('search_api_missing'); | |
| 2260 | +	if (!file_exists($sourcedir . '/SearchAPI-' . ucwords($modSettings['search_index']) . '.php')) { | |
| 2261 | +			fatal_lang_error('search_api_missing'); | |
| 2262 | + } | |
| 2156 | 2263 | require_once($sourcedir . '/SearchAPI-' . ucwords($modSettings['search_index']) . '.php'); | 
| 2157 | 2264 | |
| 2158 | 2265 | // Create an instance of the search API and check it is valid for this version of SMF. |