@@ -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 | |
@@ -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.  | 
                                                        
@@ -50,8 +50,8 @@ discard block  | 
                                                    ||
| 50 | 50 | )  | 
                                                        
| 51 | 51 | );  | 
                                                        
| 52 | 52 | $members = array();  | 
                                                        
| 53 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 54 | - $members[$row['id_member']] = array(  | 
                                                        |
| 53 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 54 | + $members[$row['id_member']] = array(  | 
                                                        |
| 55 | 55 | 'id' => $row['id_member'],  | 
                                                        
| 56 | 56 | 'real_name' => $row['real_name'],  | 
                                                        
| 57 | 57 | 'email_address' => $row['email_address'],  | 
                                                        
@@ -62,6 +62,7 @@ discard block  | 
                                                    ||
| 62 | 62 | ),  | 
                                                        
| 63 | 63 | 'lngfile' => $row['lngfile'],  | 
                                                        
| 64 | 64 | );  | 
                                                        
| 65 | + }  | 
                                                        |
| 65 | 66 | $smcFunc['db_free_result']($request);  | 
                                                        
| 66 | 67 | |
| 67 | 68 | return $members;  | 
                                                        
@@ -83,13 +84,14 @@ discard block  | 
                                                    ||
| 83 | 84 | |
| 84 | 85 |  		call_integration_hook('mention_insert_' . $content_type, array($content_id, &$members)); | 
                                                        
| 85 | 86 | |
| 86 | - foreach ($members as $member)  | 
                                                        |
| 87 | -			$smcFunc['db_insert']('ignore', | 
                                                        |
| 87 | +		foreach ($members as $member) { | 
                                                        |
| 88 | +					$smcFunc['db_insert']('ignore', | 
                                                        |
| 88 | 89 |  				'{db_prefix}mentions', | 
                                                        
| 89 | 90 |  				array('content_id' => 'int', 'content_type' => 'string', 'id_member' => 'int', 'id_mentioned' => 'int', 'time' => 'int'), | 
                                                        
| 90 | 91 | array((int) $content_id, $content_type, $id_member, $member['id'], time()),  | 
                                                        
| 91 | 92 |  				array('content_id', 'content_type', 'id_mentioned') | 
                                                        
| 92 | 93 | );  | 
                                                        
| 94 | + }  | 
                                                        |
| 93 | 95 | }  | 
                                                        
| 94 | 96 | |
| 95 | 97 | /**  | 
                                                        
@@ -103,8 +105,9 @@ discard block  | 
                                                    ||
| 103 | 105 | */  | 
                                                        
| 104 | 106 | public static function getBody($body, array $members)  | 
                                                        
| 105 | 107 |  	{ | 
                                                        
| 106 | - foreach ($members as $member)  | 
                                                        |
| 107 | - $body = str_ireplace(static::$char . $member['real_name'], '[member=' . $member['id'] . ']' . $member['real_name'] . '[/member]', $body);  | 
                                                        |
| 108 | +		foreach ($members as $member) { | 
                                                        |
| 109 | + $body = str_ireplace(static::$char . $member['real_name'], '[member=' . $member['id'] . ']' . $member['real_name'] . '[/member]', $body);  | 
                                                        |
| 110 | + }  | 
                                                        |
| 108 | 111 | |
| 109 | 112 | return $body;  | 
                                                        
| 110 | 113 | }  | 
                                                        
@@ -123,8 +126,9 @@ discard block  | 
                                                    ||
| 123 | 126 | |
| 124 | 127 | $possible_names = self::getPossibleMentions($body);  | 
                                                        
| 125 | 128 | |
| 126 | -		if (empty($possible_names) || !allowedTo('mention')) | 
                                                        |
| 127 | - return array();  | 
                                                        |
| 129 | +		if (empty($possible_names) || !allowedTo('mention')) { | 
                                                        |
| 130 | + return array();  | 
                                                        |
| 131 | + }  | 
                                                        |
| 128 | 132 | |
| 129 | 133 |  		$request = $smcFunc['db_query']('', ' | 
                                                        
| 130 | 134 | SELECT id_member, real_name  | 
                                                        
@@ -140,8 +144,9 @@ discard block  | 
                                                    ||
| 140 | 144 | $members = array();  | 
                                                        
| 141 | 145 | while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        
| 142 | 146 |  		{ | 
                                                        
| 143 | - if (stripos($body, static::$char . $row['real_name']) === false)  | 
                                                        |
| 144 | - continue;  | 
                                                        |
| 147 | +			if (stripos($body, static::$char . $row['real_name']) === false) { | 
                                                        |
| 148 | + continue;  | 
                                                        |
| 149 | + }  | 
                                                        |
| 145 | 150 | |
| 146 | 151 | $members[$row['id_member']] = array(  | 
                                                        
| 147 | 152 | 'id' => $row['id_member'],  | 
                                                        
@@ -185,8 +190,9 @@ discard block  | 
                                                    ||
| 185 | 190 |  		$body = htmlspecialchars_decode(preg_replace('~<br\s*/?\>~', "\n", str_replace(' ', ' ', $body)), ENT_QUOTES); | 
                                                        
| 186 | 191 | |
| 187 | 192 | // Remove quotes, we don't want to get double mentions.  | 
                                                        
| 188 | -		while (preg_match('~\[quote[^\]]*\](.+?)\[\/quote\]~s', $body)) | 
                                                        |
| 189 | -			$body = preg_replace('~\[quote[^\]]*\](.+?)\[\/quote\]~s', '', $body); | 
                                                        |
| 193 | +		while (preg_match('~\[quote[^\]]*\](.+?)\[\/quote\]~s', $body)) { | 
                                                        |
| 194 | +					$body = preg_replace('~\[quote[^\]]*\](.+?)\[\/quote\]~s', '', $body); | 
                                                        |
| 195 | + }  | 
                                                        |
| 190 | 196 | |
| 191 | 197 | $matches = array();  | 
                                                        
| 192 | 198 | $string = str_split($body);  | 
                                                        
@@ -197,9 +203,9 @@ discard block  | 
                                                    ||
| 197 | 203 |  			{ | 
                                                        
| 198 | 204 | $depth++;  | 
                                                        
| 199 | 205 | $matches[] = array();  | 
                                                        
| 206 | +			} elseif ($char == "\n") { | 
                                                        |
| 207 | + $depth = 0;  | 
                                                        |
| 200 | 208 | }  | 
                                                        
| 201 | - elseif ($char == "\n")  | 
                                                        |
| 202 | - $depth = 0;  | 
                                                        |
| 203 | 209 | |
| 204 | 210 | for ($i = $depth; $i > 0; $i--)  | 
                                                        
| 205 | 211 |  			{ | 
                                                        
@@ -212,8 +218,9 @@ discard block  | 
                                                    ||
| 212 | 218 | }  | 
                                                        
| 213 | 219 | }  | 
                                                        
| 214 | 220 | |
| 215 | - foreach ($matches as $k => $match)  | 
                                                        |
| 216 | -			$matches[$k] = substr(implode('', $match), 1); | 
                                                        |
| 221 | +		foreach ($matches as $k => $match) { | 
                                                        |
| 222 | +					$matches[$k] = substr(implode('', $match), 1); | 
                                                        |
| 223 | + }  | 
                                                        |
| 217 | 224 | |
| 218 | 225 | // Names can have spaces, other breaks, or they can't...we try to match every possible  | 
                                                        
| 219 | 226 | // combination.  | 
                                                        
@@ -223,8 +230,9 @@ discard block  | 
                                                    ||
| 223 | 230 |  			$match = preg_split('/([^\w])/', $match, -1, PREG_SPLIT_DELIM_CAPTURE); | 
                                                        
| 224 | 231 | $count = count($match);  | 
                                                        
| 225 | 232 | |
| 226 | - for ($i = 1; $i <= $count; $i++)  | 
                                                        |
| 227 | -				$names[] = $smcFunc['htmlspecialchars']($smcFunc['htmltrim'](implode('', array_slice($match, 0, $i)))); | 
                                                        |
| 233 | +			for ($i = 1; $i <= $count; $i++) { | 
                                                        |
| 234 | +							$names[] = $smcFunc['htmlspecialchars']($smcFunc['htmltrim'](implode('', array_slice($match, 0, $i)))); | 
                                                        |
| 235 | + }  | 
                                                        |
| 228 | 236 | }  | 
                                                        
| 229 | 237 | |
| 230 | 238 | $names = array_unique($names);  | 
                                                        
@@ -586,7 +586,7 @@ discard block  | 
                                                    ||
| 586 | 586 | 'member_name' => $regOptions['username'],  | 
                                                        
| 587 | 587 | 'email_address' => $regOptions['email'],  | 
                                                        
| 588 | 588 | 'passwd' => hash_password($regOptions['username'], $regOptions['password']),  | 
                                                        
| 589 | - 'password_salt' => substr(md5(mt_rand()), 0, 4) ,  | 
                                                        |
| 589 | + 'password_salt' => substr(md5(mt_rand()), 0, 4),  | 
                                                        |
| 590 | 590 | 'posts' => 0,  | 
                                                        
| 591 | 591 | 'date_registered' => time(),  | 
                                                        
| 592 | 592 | 'member_ip' => $regOptions['interface'] == 'admin' ? '127.0.0.1' : $user_info['ip'],  | 
                                                        
@@ -676,7 +676,7 @@ discard block  | 
                                                    ||
| 676 | 676 | 'time_offset',  | 
                                                        
| 677 | 677 | );  | 
                                                        
| 678 | 678 | $knownInets = array(  | 
                                                        
| 679 | - 'member_ip','member_ip2',  | 
                                                        |
| 679 | + 'member_ip', 'member_ip2',  | 
                                                        |
| 680 | 680 | );  | 
                                                        
| 681 | 681 | |
| 682 | 682 | // Call an optional function to validate the users' input.  | 
                                                        
@@ -904,7 +904,7 @@ discard block  | 
                                                    ||
| 904 | 904 |  	$checkName = strtr($name, array('_' => '\\_', '%' => '\\%')); | 
                                                        
| 905 | 905 | |
| 906 | 906 | //when we got no wildcard we can use equal -> fast  | 
                                                        
| 907 | - $operator = (strpos($checkName, '%') || strpos($checkName, '_') ? 'LIKE' : '=' );  | 
                                                        |
| 907 | + $operator = (strpos($checkName, '%') || strpos($checkName, '_') ? 'LIKE' : '=');  | 
                                                        |
| 908 | 908 | |
| 909 | 909 | // Make sure they don't want someone else's name.  | 
                                                        
| 910 | 910 |  	$request = $smcFunc['db_query']('', ' | 
                                                        
@@ -1273,7 +1273,7 @@ discard block  | 
                                                    ||
| 1273 | 1273 | $user_info['buddies'][] = $userReceiver;  | 
                                                        
| 1274 | 1274 | |
| 1275 | 1275 | // And add a nice alert. Don't abuse though!  | 
                                                        
| 1276 | -		if ((cache_get_data('Buddy-sent-'. $user_info['id'] .'-'. $userReceiver, 86400)) == null) | 
                                                        |
| 1276 | +		if ((cache_get_data('Buddy-sent-' . $user_info['id'] . '-' . $userReceiver, 86400)) == null) | 
                                                        |
| 1277 | 1277 |  		{ | 
                                                        
| 1278 | 1278 |  			$smcFunc['db_insert']('insert', | 
                                                        
| 1279 | 1279 |  				'{db_prefix}background_tasks', | 
                                                        
@@ -1288,7 +1288,7 @@ discard block  | 
                                                    ||
| 1288 | 1288 | );  | 
                                                        
| 1289 | 1289 | |
| 1290 | 1290 | // Store this in a cache entry to avoid creating multiple alerts. Give it a long life cycle.  | 
                                                        
| 1291 | -			cache_put_data('Buddy-sent-'. $user_info['id'] .'-'. $userReceiver, '1', 86400); | 
                                                        |
| 1291 | +			cache_put_data('Buddy-sent-' . $user_info['id'] . '-' . $userReceiver, '1', 86400); | 
                                                        |
| 1292 | 1292 | }  | 
                                                        
| 1293 | 1293 | }  | 
                                                        
| 1294 | 1294 | |
@@ -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 | * Delete one or more members.  | 
                                                        
@@ -43,30 +44,32 @@ discard block  | 
                                                    ||
| 43 | 44 |  	setMemoryLimit('128M'); | 
                                                        
| 44 | 45 | |
| 45 | 46 | // If it's not an array, make it so!  | 
                                                        
| 46 | - if (!is_array($users))  | 
                                                        |
| 47 | - $users = array($users);  | 
                                                        |
| 48 | - else  | 
                                                        |
| 49 | - $users = array_unique($users);  | 
                                                        |
| 47 | +	if (!is_array($users)) { | 
                                                        |
| 48 | + $users = array($users);  | 
                                                        |
| 49 | +	} else { | 
                                                        |
| 50 | + $users = array_unique($users);  | 
                                                        |
| 51 | + }  | 
                                                        |
| 50 | 52 | |
| 51 | 53 | // Make sure there's no void user in here.  | 
                                                        
| 52 | 54 | $users = array_diff($users, array(0));  | 
                                                        
| 53 | 55 | |
| 54 | 56 | // How many are they deleting?  | 
                                                        
| 55 | - if (empty($users))  | 
                                                        |
| 56 | - return;  | 
                                                        |
| 57 | - elseif (count($users) == 1)  | 
                                                        |
| 57 | +	if (empty($users)) { | 
                                                        |
| 58 | + return;  | 
                                                        |
| 59 | + } elseif (count($users) == 1)  | 
                                                        |
| 58 | 60 |  	{ | 
                                                        
| 59 | 61 | list ($user) = $users;  | 
                                                        
| 60 | 62 | |
| 61 | - if ($user == $user_info['id'])  | 
                                                        |
| 62 | -			isAllowedTo('profile_remove_own'); | 
                                                        |
| 63 | - else  | 
                                                        |
| 64 | -			isAllowedTo('profile_remove_any'); | 
                                                        |
| 65 | - }  | 
                                                        |
| 66 | - else  | 
                                                        |
| 63 | +		if ($user == $user_info['id']) { | 
                                                        |
| 64 | +					isAllowedTo('profile_remove_own'); | 
                                                        |
| 65 | +		} else { | 
                                                        |
| 66 | +					isAllowedTo('profile_remove_any'); | 
                                                        |
| 67 | + }  | 
                                                        |
| 68 | + } else  | 
                                                        |
| 67 | 69 |  	{ | 
                                                        
| 68 | - foreach ($users as $k => $v)  | 
                                                        |
| 69 | - $users[$k] = (int) $v;  | 
                                                        |
| 70 | +		foreach ($users as $k => $v) { | 
                                                        |
| 71 | + $users[$k] = (int) $v;  | 
                                                        |
| 72 | + }  | 
                                                        |
| 70 | 73 | |
| 71 | 74 | // Deleting more than one? You can't have more than one account...  | 
                                                        
| 72 | 75 |  		isAllowedTo('profile_remove_any'); | 
                                                        
@@ -88,26 +91,30 @@ discard block  | 
                                                    ||
| 88 | 91 | $user_log_details = array();  | 
                                                        
| 89 | 92 | while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        
| 90 | 93 |  	{ | 
                                                        
| 91 | - if ($row['is_admin'])  | 
                                                        |
| 92 | - $admins[] = $row['id_member'];  | 
                                                        |
| 94 | +		if ($row['is_admin']) { | 
                                                        |
| 95 | + $admins[] = $row['id_member'];  | 
                                                        |
| 96 | + }  | 
                                                        |
| 93 | 97 | $user_log_details[$row['id_member']] = array($row['id_member'], $row['member_name']);  | 
                                                        
| 94 | 98 | }  | 
                                                        
| 95 | 99 | $smcFunc['db_free_result']($request);  | 
                                                        
| 96 | 100 | |
| 97 | - if (empty($user_log_details))  | 
                                                        |
| 98 | - return;  | 
                                                        |
| 101 | +	if (empty($user_log_details)) { | 
                                                        |
| 102 | + return;  | 
                                                        |
| 103 | + }  | 
                                                        |
| 99 | 104 | |
| 100 | 105 | // Make sure they aren't trying to delete administrators if they aren't one. But don't bother checking if it's just themself.  | 
                                                        
| 101 | 106 |  	if (!empty($admins) && ($check_not_admin || (!allowedTo('admin_forum') && (count($users) != 1 || $users[0] != $user_info['id'])))) | 
                                                        
| 102 | 107 |  	{ | 
                                                        
| 103 | 108 | $users = array_diff($users, $admins);  | 
                                                        
| 104 | - foreach ($admins as $id)  | 
                                                        |
| 105 | - unset($user_log_details[$id]);  | 
                                                        |
| 109 | +		foreach ($admins as $id) { | 
                                                        |
| 110 | + unset($user_log_details[$id]);  | 
                                                        |
| 111 | + }  | 
                                                        |
| 106 | 112 | }  | 
                                                        
| 107 | 113 | |
| 108 | 114 | // No one left?  | 
                                                        
| 109 | - if (empty($users))  | 
                                                        |
| 110 | - return;  | 
                                                        |
| 115 | +	if (empty($users)) { | 
                                                        |
| 116 | + return;  | 
                                                        |
| 117 | + }  | 
                                                        |
| 111 | 118 | |
| 112 | 119 | // Log the action - regardless of who is deleting it.  | 
                                                        
| 113 | 120 | $log_changes = array();  | 
                                                        
@@ -124,8 +131,9 @@ discard block  | 
                                                    ||
| 124 | 131 | );  | 
                                                        
| 125 | 132 | |
| 126 | 133 | // Remove any cached data if enabled.  | 
                                                        
| 127 | - if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2)  | 
                                                        |
| 128 | -			cache_put_data('user_settings-' . $user[0], null, 60); | 
                                                        |
| 134 | +		if (!empty($modSettings['cache_enable']) && $modSettings['cache_enable'] >= 2) { | 
                                                        |
| 135 | +					cache_put_data('user_settings-' . $user[0], null, 60); | 
                                                        |
| 136 | + }  | 
                                                        |
| 129 | 137 | }  | 
                                                        
| 130 | 138 | |
| 131 | 139 | // Make these peoples' posts guest posts.  | 
                                                        
@@ -388,8 +396,8 @@ discard block  | 
                                                    ||
| 388 | 396 |  			'buddy_list' => implode(', buddy_list) != 0 OR FIND_IN_SET(', $users), | 
                                                        
| 389 | 397 | )  | 
                                                        
| 390 | 398 | );  | 
                                                        
| 391 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 392 | -		$smcFunc['db_query']('', ' | 
                                                        |
| 399 | +	while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 400 | +			$smcFunc['db_query']('', ' | 
                                                        |
| 393 | 401 |  			UPDATE {db_prefix}members | 
                                                        
| 394 | 402 | SET  | 
                                                        
| 395 | 403 |  				pm_ignore_list = {string:pm_ignore_list}, | 
                                                        
@@ -401,6 +409,7 @@ discard block  | 
                                                    ||
| 401 | 409 |  				'buddy_list' => implode(',', array_diff(explode(',', $row['buddy_list']), $users)), | 
                                                        
| 402 | 410 | )  | 
                                                        
| 403 | 411 | );  | 
                                                        
| 412 | + }  | 
                                                        |
| 404 | 413 | $smcFunc['db_free_result']($request);  | 
                                                        
| 405 | 414 | |
| 406 | 415 | // Make sure no member's birthday is still sticking in the calendar...  | 
                                                        
@@ -455,29 +464,34 @@ discard block  | 
                                                    ||
| 455 | 464 | elseif ($regOptions['interface'] == 'guest')  | 
                                                        
| 456 | 465 |  	{ | 
                                                        
| 457 | 466 | // You cannot register twice...  | 
                                                        
| 458 | - if (empty($user_info['is_guest']))  | 
                                                        |
| 459 | - redirectexit();  | 
                                                        |
| 467 | +		if (empty($user_info['is_guest'])) { | 
                                                        |
| 468 | + redirectexit();  | 
                                                        |
| 469 | + }  | 
                                                        |
| 460 | 470 | |
| 461 | 471 | // Make sure they didn't just register with this session.  | 
                                                        
| 462 | - if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck']))  | 
                                                        |
| 463 | -			fatal_lang_error('register_only_once', false); | 
                                                        |
| 472 | +		if (!empty($_SESSION['just_registered']) && empty($modSettings['disableRegisterCheck'])) { | 
                                                        |
| 473 | +					fatal_lang_error('register_only_once', false); | 
                                                        |
| 474 | + }  | 
                                                        |
| 464 | 475 | }  | 
                                                        
| 465 | 476 | |
| 466 | 477 | // Spaces and other odd characters are evil...  | 
                                                        
| 467 | 478 |  	$regOptions['username'] = trim(preg_replace('~[\t\n\r \x0B\0' . ($context['utf8'] ? '\x{A0}\x{AD}\x{2000}-\x{200F}\x{201F}\x{202F}\x{3000}\x{FEFF}' : '\x00-\x08\x0B\x0C\x0E-\x19\xA0') . ']+~' . ($context['utf8'] ? 'u' : ''), ' ', $regOptions['username'])); | 
                                                        
| 468 | 479 | |
| 469 | 480 | // @todo Separate the sprintf?  | 
                                                        
| 470 | - if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255)  | 
                                                        |
| 471 | -		$reg_errors[] = array('lang', 'profile_error_bad_email'); | 
                                                        |
| 481 | +	if (empty($regOptions['email']) || !filter_var($regOptions['email'], FILTER_VALIDATE_EMAIL) || strlen($regOptions['email']) > 255) { | 
                                                        |
| 482 | +			$reg_errors[] = array('lang', 'profile_error_bad_email'); | 
                                                        |
| 483 | + }  | 
                                                        |
| 472 | 484 | |
| 473 | 485 | $username_validation_errors = validateUsername(0, $regOptions['username'], true, !empty($regOptions['check_reserved_name']));  | 
                                                        
| 474 | - if (!empty($username_validation_errors))  | 
                                                        |
| 475 | - $reg_errors = array_merge($reg_errors, $username_validation_errors);  | 
                                                        |
| 486 | +	if (!empty($username_validation_errors)) { | 
                                                        |
| 487 | + $reg_errors = array_merge($reg_errors, $username_validation_errors);  | 
                                                        |
| 488 | + }  | 
                                                        |
| 476 | 489 | |
| 477 | 490 | // Generate a validation code if it's supposed to be emailed.  | 
                                                        
| 478 | 491 | $validation_code = '';  | 
                                                        
| 479 | - if ($regOptions['require'] == 'activation')  | 
                                                        |
| 480 | - $validation_code = generateValidationCode();  | 
                                                        |
| 492 | +	if ($regOptions['require'] == 'activation') { | 
                                                        |
| 493 | + $validation_code = generateValidationCode();  | 
                                                        |
| 494 | + }  | 
                                                        |
| 481 | 495 | |
| 482 | 496 | // If you haven't put in a password generate one.  | 
                                                        
| 483 | 497 | if ($regOptions['interface'] == 'admin' && $regOptions['password'] == '')  | 
                                                        
@@ -487,8 +501,9 @@ discard block  | 
                                                    ||
| 487 | 501 | $regOptions['password_check'] = $regOptions['password'];  | 
                                                        
| 488 | 502 | }  | 
                                                        
| 489 | 503 | // Does the first password match the second?  | 
                                                        
| 490 | - elseif ($regOptions['password'] != $regOptions['password_check'])  | 
                                                        |
| 491 | -		$reg_errors[] = array('lang', 'passwords_dont_match'); | 
                                                        |
| 504 | +	elseif ($regOptions['password'] != $regOptions['password_check']) { | 
                                                        |
| 505 | +			$reg_errors[] = array('lang', 'passwords_dont_match'); | 
                                                        |
| 506 | + }  | 
                                                        |
| 492 | 507 | |
| 493 | 508 | // That's kind of easy to guess...  | 
                                                        
| 494 | 509 | if ($regOptions['password'] == '')  | 
                                                        
@@ -502,13 +517,15 @@ discard block  | 
                                                    ||
| 502 | 517 | $passwordError = validatePassword($regOptions['password'], $regOptions['username'], array($regOptions['email']));  | 
                                                        
| 503 | 518 | |
| 504 | 519 | // Password isn't legal?  | 
                                                        
| 505 | - if ($passwordError != null)  | 
                                                        |
| 506 | -			$reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); | 
                                                        |
| 520 | +		if ($passwordError != null) { | 
                                                        |
| 521 | +					$reg_errors[] = array('lang', 'profile_error_password_' . $passwordError); | 
                                                        |
| 522 | + }  | 
                                                        |
| 507 | 523 | }  | 
                                                        
| 508 | 524 | |
| 509 | 525 | // You may not be allowed to register this email.  | 
                                                        
| 510 | - if (!empty($regOptions['check_email_ban']))  | 
                                                        |
| 511 | - isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']);  | 
                                                        |
| 526 | +	if (!empty($regOptions['check_email_ban'])) { | 
                                                        |
| 527 | + isBannedEmail($regOptions['email'], 'cannot_register', $txt['ban_register_prohibited']);  | 
                                                        |
| 528 | + }  | 
                                                        |
| 512 | 529 | |
| 513 | 530 | // Check if the email address is in use.  | 
                                                        
| 514 | 531 |  	$request = $smcFunc['db_query']('', ' | 
                                                        
@@ -523,8 +540,9 @@ discard block  | 
                                                    ||
| 523 | 540 | )  | 
                                                        
| 524 | 541 | );  | 
                                                        
| 525 | 542 | // @todo Separate the sprintf?  | 
                                                        
| 526 | - if ($smcFunc['db_num_rows']($request) != 0)  | 
                                                        |
| 527 | -		$reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); | 
                                                        |
| 543 | +	if ($smcFunc['db_num_rows']($request) != 0) { | 
                                                        |
| 544 | +			$reg_errors[] = array('lang', 'email_in_use', false, array($smcFunc['htmlspecialchars']($regOptions['email']))); | 
                                                        |
| 545 | + }  | 
                                                        |
| 528 | 546 | |
| 529 | 547 | $smcFunc['db_free_result']($request);  | 
                                                        
| 530 | 548 | |
@@ -539,24 +557,27 @@ discard block  | 
                                                    ||
| 539 | 557 | 1 = The text/index.  | 
                                                        
| 540 | 558 | 2 = Whether to log.  | 
                                                        
| 541 | 559 | 3 = sprintf data if necessary. */  | 
                                                        
| 542 | - if ($error[0] == 'lang')  | 
                                                        |
| 543 | -			loadLanguage('Errors'); | 
                                                        |
| 560 | +		if ($error[0] == 'lang') { | 
                                                        |
| 561 | +					loadLanguage('Errors'); | 
                                                        |
| 562 | + }  | 
                                                        |
| 544 | 563 | $message = $error[0] == 'lang' ? (empty($error[3]) ? $txt[$error[1]] : vsprintf($txt[$error[1]], $error[3])) : $error[1];  | 
                                                        
| 545 | 564 | |
| 546 | 565 | // What to do, what to do, what to do.  | 
                                                        
| 547 | 566 | if ($return_errors)  | 
                                                        
| 548 | 567 |  		{ | 
                                                        
| 549 | - if (!empty($error[2]))  | 
                                                        |
| 550 | - log_error($message, $error[2]);  | 
                                                        |
| 568 | +			if (!empty($error[2])) { | 
                                                        |
| 569 | + log_error($message, $error[2]);  | 
                                                        |
| 570 | + }  | 
                                                        |
| 551 | 571 | $reg_errors[$key] = $message;  | 
                                                        
| 572 | +		} else { | 
                                                        |
| 573 | + fatal_error($message, empty($error[2]) ? false : $error[2]);  | 
                                                        |
| 552 | 574 | }  | 
                                                        
| 553 | - else  | 
                                                        |
| 554 | - fatal_error($message, empty($error[2]) ? false : $error[2]);  | 
                                                        |
| 555 | 575 | }  | 
                                                        
| 556 | 576 | |
| 557 | 577 | // If there's any errors left return them at once!  | 
                                                        
| 558 | - if (!empty($reg_errors))  | 
                                                        |
| 559 | - return $reg_errors;  | 
                                                        |
| 578 | +	if (!empty($reg_errors)) { | 
                                                        |
| 579 | + return $reg_errors;  | 
                                                        |
| 580 | + }  | 
                                                        |
| 560 | 581 | |
| 561 | 582 | $reservedVars = array(  | 
                                                        
| 562 | 583 | 'actual_theme_url',  | 
                                                        
@@ -578,8 +599,9 @@ discard block  | 
                                                    ||
| 578 | 599 | );  | 
                                                        
| 579 | 600 | |
| 580 | 601 | // Can't change reserved vars.  | 
                                                        
| 581 | - if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0)  | 
                                                        |
| 582 | -		fatal_lang_error('no_theme'); | 
                                                        |
| 602 | +	if (isset($regOptions['theme_vars']) && count(array_intersect(array_keys($regOptions['theme_vars']), $reservedVars)) != 0) { | 
                                                        |
| 603 | +			fatal_lang_error('no_theme'); | 
                                                        |
| 604 | + }  | 
                                                        |
| 583 | 605 | |
| 584 | 606 | // Some of these might be overwritten. (the lower ones that are in the arrays below.)  | 
                                                        
| 585 | 607 | $regOptions['register_vars'] = array(  | 
                                                        
@@ -621,14 +643,17 @@ discard block  | 
                                                    ||
| 621 | 643 | $regOptions['register_vars']['validation_code'] = '';  | 
                                                        
| 622 | 644 | }  | 
                                                        
| 623 | 645 | // Maybe it can be activated right away?  | 
                                                        
| 624 | - elseif ($regOptions['require'] == 'nothing')  | 
                                                        |
| 625 | - $regOptions['register_vars']['is_activated'] = 1;  | 
                                                        |
| 646 | +	elseif ($regOptions['require'] == 'nothing') { | 
                                                        |
| 647 | + $regOptions['register_vars']['is_activated'] = 1;  | 
                                                        |
| 648 | + }  | 
                                                        |
| 626 | 649 | // Maybe it must be activated by email?  | 
                                                        
| 627 | - elseif ($regOptions['require'] == 'activation')  | 
                                                        |
| 628 | - $regOptions['register_vars']['is_activated'] = 0;  | 
                                                        |
| 650 | +	elseif ($regOptions['require'] == 'activation') { | 
                                                        |
| 651 | + $regOptions['register_vars']['is_activated'] = 0;  | 
                                                        |
| 652 | + }  | 
                                                        |
| 629 | 653 | // Otherwise it must be awaiting approval!  | 
                                                        
| 630 | - else  | 
                                                        |
| 631 | - $regOptions['register_vars']['is_activated'] = 3;  | 
                                                        |
| 654 | +	else { | 
                                                        |
| 655 | + $regOptions['register_vars']['is_activated'] = 3;  | 
                                                        |
| 656 | + }  | 
                                                        |
| 632 | 657 | |
| 633 | 658 | if (isset($regOptions['memberGroup']))  | 
                                                        
| 634 | 659 |  	{ | 
                                                        
@@ -647,24 +672,28 @@ discard block  | 
                                                    ||
| 647 | 672 | 'is_protected' => 1,  | 
                                                        
| 648 | 673 | )  | 
                                                        
| 649 | 674 | );  | 
                                                        
| 650 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 651 | - $unassignableGroups[] = $row['id_group'];  | 
                                                        |
| 675 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 676 | + $unassignableGroups[] = $row['id_group'];  | 
                                                        |
| 677 | + }  | 
                                                        |
| 652 | 678 | $smcFunc['db_free_result']($request);  | 
                                                        
| 653 | 679 | |
| 654 | - if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups))  | 
                                                        |
| 655 | - $regOptions['register_vars']['id_group'] = 0;  | 
                                                        |
| 680 | +		if (in_array($regOptions['register_vars']['id_group'], $unassignableGroups)) { | 
                                                        |
| 681 | + $regOptions['register_vars']['id_group'] = 0;  | 
                                                        |
| 682 | + }  | 
                                                        |
| 656 | 683 | }  | 
                                                        
| 657 | 684 | |
| 658 | 685 | // Integrate optional member settings to be set.  | 
                                                        
| 659 | - if (!empty($regOptions['extra_register_vars']))  | 
                                                        |
| 660 | - foreach ($regOptions['extra_register_vars'] as $var => $value)  | 
                                                        |
| 686 | +	if (!empty($regOptions['extra_register_vars'])) { | 
                                                        |
| 687 | + foreach ($regOptions['extra_register_vars'] as $var => $value)  | 
                                                        |
| 661 | 688 | $regOptions['register_vars'][$var] = $value;  | 
                                                        
| 689 | + }  | 
                                                        |
| 662 | 690 | |
| 663 | 691 | // Integrate optional user theme options to be set.  | 
                                                        
| 664 | 692 | $theme_vars = array();  | 
                                                        
| 665 | - if (!empty($regOptions['theme_vars']))  | 
                                                        |
| 666 | - foreach ($regOptions['theme_vars'] as $var => $value)  | 
                                                        |
| 693 | +	if (!empty($regOptions['theme_vars'])) { | 
                                                        |
| 694 | + foreach ($regOptions['theme_vars'] as $var => $value)  | 
                                                        |
| 667 | 695 | $theme_vars[$var] = $value;  | 
                                                        
| 696 | + }  | 
                                                        |
| 668 | 697 | |
| 669 | 698 | // Right, now let's prepare for insertion.  | 
                                                        
| 670 | 699 | $knownInts = array(  | 
                                                        
@@ -687,14 +716,15 @@ discard block  | 
                                                    ||
| 687 | 716 | foreach ($regOptions['register_vars'] as $var => $val)  | 
                                                        
| 688 | 717 |  	{ | 
                                                        
| 689 | 718 | $type = 'string';  | 
                                                        
| 690 | - if (in_array($var, $knownInts))  | 
                                                        |
| 691 | - $type = 'int';  | 
                                                        |
| 692 | - elseif (in_array($var, $knownFloats))  | 
                                                        |
| 693 | - $type = 'float';  | 
                                                        |
| 694 | - elseif (in_array($var, $knownInets))  | 
                                                        |
| 695 | - $type = 'inet';  | 
                                                        |
| 696 | - elseif ($var == 'birthdate')  | 
                                                        |
| 697 | - $type = 'date';  | 
                                                        |
| 719 | +		if (in_array($var, $knownInts)) { | 
                                                        |
| 720 | + $type = 'int';  | 
                                                        |
| 721 | +		} elseif (in_array($var, $knownFloats)) { | 
                                                        |
| 722 | + $type = 'float';  | 
                                                        |
| 723 | +		} elseif (in_array($var, $knownInets)) { | 
                                                        |
| 724 | + $type = 'inet';  | 
                                                        |
| 725 | +		} elseif ($var == 'birthdate') { | 
                                                        |
| 726 | + $type = 'date';  | 
                                                        |
| 727 | + }  | 
                                                        |
| 698 | 728 | |
| 699 | 729 | $column_names[$var] = $type;  | 
                                                        
| 700 | 730 | $values[$var] = $val;  | 
                                                        
@@ -713,17 +743,19 @@ discard block  | 
                                                    ||
| 713 | 743 |  	call_integration_hook('integrate_post_register', array(&$regOptions, &$theme_vars, &$memberID)); | 
                                                        
| 714 | 744 | |
| 715 | 745 | // Update the number of members and latest member's info - and pass the name, but remove the 's.  | 
                                                        
| 716 | - if ($regOptions['register_vars']['is_activated'] == 1)  | 
                                                        |
| 717 | -		updateStats('member', $memberID, $regOptions['register_vars']['real_name']); | 
                                                        |
| 718 | - else  | 
                                                        |
| 719 | -		updateStats('member'); | 
                                                        |
| 746 | +	if ($regOptions['register_vars']['is_activated'] == 1) { | 
                                                        |
| 747 | +			updateStats('member', $memberID, $regOptions['register_vars']['real_name']); | 
                                                        |
| 748 | +	} else { | 
                                                        |
| 749 | +			updateStats('member'); | 
                                                        |
| 750 | + }  | 
                                                        |
| 720 | 751 | |
| 721 | 752 | // Theme variables too?  | 
                                                        
| 722 | 753 | if (!empty($theme_vars))  | 
                                                        
| 723 | 754 |  	{ | 
                                                        
| 724 | 755 | $inserts = array();  | 
                                                        
| 725 | - foreach ($theme_vars as $var => $val)  | 
                                                        |
| 726 | - $inserts[] = array($memberID, $var, $val);  | 
                                                        |
| 756 | +		foreach ($theme_vars as $var => $val) { | 
                                                        |
| 757 | + $inserts[] = array($memberID, $var, $val);  | 
                                                        |
| 758 | + }  | 
                                                        |
| 727 | 759 |  		$smcFunc['db_insert']('insert', | 
                                                        
| 728 | 760 |  			'{db_prefix}themes', | 
                                                        
| 729 | 761 |  			array('id_member' => 'int', 'variable' => 'string-255', 'value' => 'string-65534'), | 
                                                        
@@ -738,10 +770,11 @@ discard block  | 
                                                    ||
| 738 | 770 | // Administrative registrations are a bit different...  | 
                                                        
| 739 | 771 | if ($regOptions['interface'] == 'admin')  | 
                                                        
| 740 | 772 |  	{ | 
                                                        
| 741 | - if ($regOptions['require'] == 'activation')  | 
                                                        |
| 742 | - $email_message = 'admin_register_activate';  | 
                                                        |
| 743 | - elseif (!empty($regOptions['send_welcome_email']))  | 
                                                        |
| 744 | - $email_message = 'admin_register_immediate';  | 
                                                        |
| 773 | +		if ($regOptions['require'] == 'activation') { | 
                                                        |
| 774 | + $email_message = 'admin_register_activate';  | 
                                                        |
| 775 | +		} elseif (!empty($regOptions['send_welcome_email'])) { | 
                                                        |
| 776 | + $email_message = 'admin_register_immediate';  | 
                                                        |
| 777 | + }  | 
                                                        |
| 745 | 778 | |
| 746 | 779 | if (isset($email_message))  | 
                                                        
| 747 | 780 |  		{ | 
                                                        
@@ -792,16 +825,17 @@ discard block  | 
                                                    ||
| 792 | 825 | 'FORGOTPASSWORDLINK' => $scripturl . '?action=reminder',  | 
                                                        
| 793 | 826 | );  | 
                                                        
| 794 | 827 | |
| 795 | - if ($regOptions['require'] == 'activation')  | 
                                                        |
| 796 | - $replacements += array(  | 
                                                        |
| 828 | +		if ($regOptions['require'] == 'activation') { | 
                                                        |
| 829 | + $replacements += array(  | 
                                                        |
| 797 | 830 | 'ACTIVATIONLINK' => $scripturl . '?action=activate;u=' . $memberID . ';code=' . $validation_code,  | 
                                                        
| 798 | 831 | 'ACTIVATIONLINKWITHOUTCODE' => $scripturl . '?action=activate;u=' . $memberID,  | 
                                                        
| 799 | 832 | 'ACTIVATIONCODE' => $validation_code,  | 
                                                        
| 800 | 833 | );  | 
                                                        
| 801 | - else  | 
                                                        |
| 802 | - $replacements += array(  | 
                                                        |
| 834 | +		} else { | 
                                                        |
| 835 | + $replacements += array(  | 
                                                        |
| 803 | 836 | 'COPPALINK' => $scripturl . '?action=coppa;u=' . $memberID,  | 
                                                        
| 804 | 837 | );  | 
                                                        
| 838 | + }  | 
                                                        |
| 805 | 839 | |
| 806 | 840 |  		$emaildata = loadEmailTemplate('register_' . ($regOptions['require'] == 'activation' ? 'activate' : 'coppa'), $replacements); | 
                                                        
| 807 | 841 | |
@@ -866,39 +900,45 @@ discard block  | 
                                                    ||
| 866 | 900 | // Check each name in the list...  | 
                                                        
| 867 | 901 | foreach ($reservedNames as $reserved)  | 
                                                        
| 868 | 902 |  		{ | 
                                                        
| 869 | - if ($reserved == '')  | 
                                                        |
| 870 | - continue;  | 
                                                        |
| 903 | +			if ($reserved == '') { | 
                                                        |
| 904 | + continue;  | 
                                                        |
| 905 | + }  | 
                                                        |
| 871 | 906 | |
| 872 | 907 | // The admin might've used entities too, level the playing field.  | 
                                                        
| 873 | 908 |  			$reservedCheck = preg_replace('~(&#(\d{1,7}|x[0-9a-fA-F]{1,6});)~', 'replaceEntities__callback', $reserved); | 
                                                        
| 874 | 909 | |
| 875 | 910 | // Case sensitive name?  | 
                                                        
| 876 | - if (empty($modSettings['reserveCase']))  | 
                                                        |
| 877 | - $reservedCheck = $smcFunc['strtolower']($reservedCheck);  | 
                                                        |
| 911 | +			if (empty($modSettings['reserveCase'])) { | 
                                                        |
| 912 | + $reservedCheck = $smcFunc['strtolower']($reservedCheck);  | 
                                                        |
| 913 | + }  | 
                                                        |
| 878 | 914 | |
| 879 | 915 | // If it's not just entire word, check for it in there somewhere...  | 
                                                        
| 880 | - if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord'])))  | 
                                                        |
| 881 | - if ($fatal)  | 
                                                        |
| 916 | +			if ($checkMe == $reservedCheck || ($smcFunc['strpos']($checkMe, $reservedCheck) !== false && empty($modSettings['reserveWord']))) { | 
                                                        |
| 917 | + if ($fatal)  | 
                                                        |
| 882 | 918 |  					fatal_lang_error('username_reserved', 'password', array($reserved)); | 
                                                        
| 883 | - else  | 
                                                        |
| 884 | - return true;  | 
                                                        |
| 919 | +			} else { | 
                                                        |
| 920 | + return true;  | 
                                                        |
| 921 | + }  | 
                                                        |
| 885 | 922 | }  | 
                                                        
| 886 | 923 | |
| 887 | 924 | $censor_name = $name;  | 
                                                        
| 888 | - if (censorText($censor_name) != $name)  | 
                                                        |
| 889 | - if ($fatal)  | 
                                                        |
| 925 | +		if (censorText($censor_name) != $name) { | 
                                                        |
| 926 | + if ($fatal)  | 
                                                        |
| 890 | 927 |  				fatal_lang_error('name_censored', 'password', array($name)); | 
                                                        
| 891 | - else  | 
                                                        |
| 892 | - return true;  | 
                                                        |
| 928 | +		} else { | 
                                                        |
| 929 | + return true;  | 
                                                        |
| 930 | + }  | 
                                                        |
| 893 | 931 | }  | 
                                                        
| 894 | 932 | |
| 895 | 933 | // Characters we just shouldn't allow, regardless.  | 
                                                        
| 896 | -	foreach (array('*') as $char) | 
                                                        |
| 897 | - if (strpos($checkName, $char) !== false)  | 
                                                        |
| 934 | +	foreach (array('*') as $char) { | 
                                                        |
| 935 | + if (strpos($checkName, $char) !== false)  | 
                                                        |
| 898 | 936 | if ($fatal)  | 
                                                        
| 899 | 937 |  				fatal_lang_error('username_reserved', 'password', array($char)); | 
                                                        
| 900 | - else  | 
                                                        |
| 901 | - return true;  | 
                                                        |
| 938 | + }  | 
                                                        |
| 939 | +			else { | 
                                                        |
| 940 | + return true;  | 
                                                        |
| 941 | + }  | 
                                                        |
| 902 | 942 | |
| 903 | 943 | // Get rid of any SQL parts of the reserved name...  | 
                                                        
| 904 | 944 |  	$checkName = strtr($name, array('_' => '\\_', '%' => '\\%')); | 
                                                        
@@ -980,8 +1020,9 @@ discard block  | 
                                                    ||
| 980 | 1020 | 'permission' => $permission,  | 
                                                        
| 981 | 1021 | )  | 
                                                        
| 982 | 1022 | );  | 
                                                        
| 983 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 984 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];  | 
                                                        |
| 1023 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 1024 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];  | 
                                                        |
| 1025 | + }  | 
                                                        |
| 985 | 1026 | $smcFunc['db_free_result']($request);  | 
                                                        
| 986 | 1027 | }  | 
                                                        
| 987 | 1028 | |
@@ -989,9 +1030,9 @@ discard block  | 
                                                    ||
| 989 | 1030 | else  | 
                                                        
| 990 | 1031 |  	{ | 
                                                        
| 991 | 1032 | // First get the profile of the given board.  | 
                                                        
| 992 | - if (isset($board_info['id']) && $board_info['id'] == $board_id)  | 
                                                        |
| 993 | - $profile_id = $board_info['profile'];  | 
                                                        |
| 994 | - elseif ($board_id !== 0)  | 
                                                        |
| 1033 | +		if (isset($board_info['id']) && $board_info['id'] == $board_id) { | 
                                                        |
| 1034 | + $profile_id = $board_info['profile'];  | 
                                                        |
| 1035 | + } elseif ($board_id !== 0)  | 
                                                        |
| 995 | 1036 |  		{ | 
                                                        
| 996 | 1037 |  			$request = $smcFunc['db_query']('', ' | 
                                                        
| 997 | 1038 | SELECT id_profile  | 
                                                        
@@ -1002,13 +1043,14 @@ discard block  | 
                                                    ||
| 1002 | 1043 | 'id_board' => $board_id,  | 
                                                        
| 1003 | 1044 | )  | 
                                                        
| 1004 | 1045 | );  | 
                                                        
| 1005 | - if ($smcFunc['db_num_rows']($request) == 0)  | 
                                                        |
| 1006 | -				fatal_lang_error('no_board'); | 
                                                        |
| 1046 | +			if ($smcFunc['db_num_rows']($request) == 0) { | 
                                                        |
| 1047 | +							fatal_lang_error('no_board'); | 
                                                        |
| 1048 | + }  | 
                                                        |
| 1007 | 1049 | list ($profile_id) = $smcFunc['db_fetch_row']($request);  | 
                                                        
| 1008 | 1050 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1051 | +		} else { | 
                                                        |
| 1052 | + $profile_id = 1;  | 
                                                        |
| 1009 | 1053 | }  | 
                                                        
| 1010 | - else  | 
                                                        |
| 1011 | - $profile_id = 1;  | 
                                                        |
| 1012 | 1054 | |
| 1013 | 1055 |  		$request = $smcFunc['db_query']('', ' | 
                                                        
| 1014 | 1056 | SELECT bp.id_group, bp.add_deny  | 
                                                        
@@ -1020,8 +1062,9 @@ discard block  | 
                                                    ||
| 1020 | 1062 | 'permission' => $permission,  | 
                                                        
| 1021 | 1063 | )  | 
                                                        
| 1022 | 1064 | );  | 
                                                        
| 1023 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 1024 | - $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];  | 
                                                        |
| 1065 | +		while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 1066 | + $member_groups[$row['add_deny'] === '1' ? 'allowed' : 'denied'][] = $row['id_group'];  | 
                                                        |
| 1067 | + }  | 
                                                        |
| 1025 | 1068 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1026 | 1069 | |
| 1027 | 1070 | $moderator_groups = array();  | 
                                                        
@@ -1030,8 +1073,7 @@ discard block  | 
                                                    ||
| 1030 | 1073 | if (isset($board_info['moderator_groups']))  | 
                                                        
| 1031 | 1074 |  		{ | 
                                                        
| 1032 | 1075 | $moderator_groups = array_keys($board_info['moderator_groups']);  | 
                                                        
| 1033 | - }  | 
                                                        |
| 1034 | - elseif ($board_id !== 0)  | 
                                                        |
| 1076 | + } elseif ($board_id !== 0)  | 
                                                        |
| 1035 | 1077 |  		{ | 
                                                        
| 1036 | 1078 | // Get the groups that can moderate this board  | 
                                                        
| 1037 | 1079 |  			$request = $smcFunc['db_query']('', ' | 
                                                        
@@ -1116,8 +1158,9 @@ discard block  | 
                                                    ||
| 1116 | 1158 | )  | 
                                                        
| 1117 | 1159 | );  | 
                                                        
| 1118 | 1160 | $members = array();  | 
                                                        
| 1119 | - while ($row = $smcFunc['db_fetch_assoc']($request))  | 
                                                        |
| 1120 | - $members[] = $row['id_member'];  | 
                                                        |
| 1161 | +	while ($row = $smcFunc['db_fetch_assoc']($request)) { | 
                                                        |
| 1162 | + $members[] = $row['id_member'];  | 
                                                        |
| 1163 | + }  | 
                                                        |
| 1121 | 1164 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1122 | 1165 | |
| 1123 | 1166 | return $members;  | 
                                                        
@@ -1190,10 +1233,12 @@ discard block  | 
                                                    ||
| 1190 | 1233 | }  | 
                                                        
| 1191 | 1234 | |
| 1192 | 1235 | $query_parts = array();  | 
                                                        
| 1193 | - if (!empty($email))  | 
                                                        |
| 1194 | -		$query_parts[] = 'poster_email = {string:email_address}'; | 
                                                        |
| 1195 | - if (!empty($membername))  | 
                                                        |
| 1196 | -		$query_parts[] = 'poster_name = {string:member_name}'; | 
                                                        |
| 1236 | +	if (!empty($email)) { | 
                                                        |
| 1237 | +			$query_parts[] = 'poster_email = {string:email_address}'; | 
                                                        |
| 1238 | + }  | 
                                                        |
| 1239 | +	if (!empty($membername)) { | 
                                                        |
| 1240 | +			$query_parts[] = 'poster_name = {string:member_name}'; | 
                                                        |
| 1241 | + }  | 
                                                        |
| 1197 | 1242 |  	$query = implode(' AND ', $query_parts); | 
                                                        
| 1198 | 1243 | |
| 1199 | 1244 | // Finally, update the posts themselves!  | 
                                                        
@@ -1260,12 +1305,14 @@ discard block  | 
                                                    ||
| 1260 | 1305 | |
| 1261 | 1306 | $userReceiver = (int) !empty($_REQUEST['u']) ? $_REQUEST['u'] : 0;  | 
                                                        
| 1262 | 1307 | |
| 1263 | - if (empty($userReceiver))  | 
                                                        |
| 1264 | -		fatal_lang_error('no_access', false); | 
                                                        |
| 1308 | +	if (empty($userReceiver)) { | 
                                                        |
| 1309 | +			fatal_lang_error('no_access', false); | 
                                                        |
| 1310 | + }  | 
                                                        |
| 1265 | 1311 | |
| 1266 | 1312 | // Remove if it's already there...  | 
                                                        
| 1267 | - if (in_array($userReceiver, $user_info['buddies']))  | 
                                                        |
| 1268 | - $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver));  | 
                                                        |
| 1313 | +	if (in_array($userReceiver, $user_info['buddies'])) { | 
                                                        |
| 1314 | + $user_info['buddies'] = array_diff($user_info['buddies'], array($userReceiver));  | 
                                                        |
| 1315 | + }  | 
                                                        |
| 1269 | 1316 | |
| 1270 | 1317 | // ...or add if it's not and if it's not you.  | 
                                                        
| 1271 | 1318 | elseif ($user_info['id'] != $userReceiver)  | 
                                                        
@@ -1340,8 +1387,9 @@ discard block  | 
                                                    ||
| 1340 | 1387 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1341 | 1388 | |
| 1342 | 1389 | // If we want duplicates pass the members array off.  | 
                                                        
| 1343 | - if ($get_duplicates)  | 
                                                        |
| 1344 | - populateDuplicateMembers($members);  | 
                                                        |
| 1390 | +	if ($get_duplicates) { | 
                                                        |
| 1391 | + populateDuplicateMembers($members);  | 
                                                        |
| 1392 | + }  | 
                                                        |
| 1345 | 1393 | |
| 1346 | 1394 | return $members;  | 
                                                        
| 1347 | 1395 | }  | 
                                                        
@@ -1358,8 +1406,9 @@ discard block  | 
                                                    ||
| 1358 | 1406 | global $smcFunc, $modSettings;  | 
                                                        
| 1359 | 1407 | |
| 1360 | 1408 | // We know how many members there are in total.  | 
                                                        
| 1361 | - if (empty($where) || $where == '1=1')  | 
                                                        |
| 1362 | - $num_members = $modSettings['totalMembers'];  | 
                                                        |
| 1409 | +	if (empty($where) || $where == '1=1') { | 
                                                        |
| 1410 | + $num_members = $modSettings['totalMembers'];  | 
                                                        |
| 1411 | + }  | 
                                                        |
| 1363 | 1412 | |
| 1364 | 1413 | // The database knows the amount when there are extra conditions.  | 
                                                        
| 1365 | 1414 | else  | 
                                                        
@@ -1395,16 +1444,19 @@ discard block  | 
                                                    ||
| 1395 | 1444 | $members[$key]['duplicate_members'] = array();  | 
                                                        
| 1396 | 1445 | |
| 1397 | 1446 | // Store the IPs.  | 
                                                        
| 1398 | - if (!empty($member['member_ip']))  | 
                                                        |
| 1399 | - $ips[] = $member['member_ip'];  | 
                                                        |
| 1400 | - if (!empty($member['member_ip2']))  | 
                                                        |
| 1401 | - $ips[] = $member['member_ip2'];  | 
                                                        |
| 1447 | +		if (!empty($member['member_ip'])) { | 
                                                        |
| 1448 | + $ips[] = $member['member_ip'];  | 
                                                        |
| 1449 | + }  | 
                                                        |
| 1450 | +		if (!empty($member['member_ip2'])) { | 
                                                        |
| 1451 | + $ips[] = $member['member_ip2'];  | 
                                                        |
| 1452 | + }  | 
                                                        |
| 1402 | 1453 | }  | 
                                                        
| 1403 | 1454 | |
| 1404 | 1455 | $ips = array_unique($ips);  | 
                                                        
| 1405 | 1456 | |
| 1406 | - if (empty($ips))  | 
                                                        |
| 1407 | - return false;  | 
                                                        |
| 1457 | +	if (empty($ips)) { | 
                                                        |
| 1458 | + return false;  | 
                                                        |
| 1459 | + }  | 
                                                        |
| 1408 | 1460 | |
| 1409 | 1461 | // Fetch all members with this IP address, we'll filter out the current ones in a sec.  | 
                                                        
| 1410 | 1462 |  	$request = $smcFunc['db_query']('', ' | 
                                                        
@@ -1434,10 +1486,12 @@ discard block  | 
                                                    ||
| 1434 | 1486 | 'ip2' => $row['member_ip2'],  | 
                                                        
| 1435 | 1487 | );  | 
                                                        
| 1436 | 1488 | |
| 1437 | - if (in_array($row['member_ip'], $ips))  | 
                                                        |
| 1438 | - $duplicate_members[$row['member_ip']][] = $member_context;  | 
                                                        |
| 1439 | - if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips))  | 
                                                        |
| 1440 | - $duplicate_members[$row['member_ip2']][] = $member_context;  | 
                                                        |
| 1489 | +		if (in_array($row['member_ip'], $ips)) { | 
                                                        |
| 1490 | + $duplicate_members[$row['member_ip']][] = $member_context;  | 
                                                        |
| 1491 | + }  | 
                                                        |
| 1492 | +		if ($row['member_ip'] != $row['member_ip2'] && in_array($row['member_ip2'], $ips)) { | 
                                                        |
| 1493 | + $duplicate_members[$row['member_ip2']][] = $member_context;  | 
                                                        |
| 1494 | + }  | 
                                                        |
| 1441 | 1495 | }  | 
                                                        
| 1442 | 1496 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1443 | 1497 | |
@@ -1462,8 +1516,9 @@ discard block  | 
                                                    ||
| 1462 | 1516 | $row['poster_ip'] = inet_dtop($row['poster_ip']);  | 
                                                        
| 1463 | 1517 | |
| 1464 | 1518 | // Don't collect lots of the same.  | 
                                                        
| 1465 | - if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']]))  | 
                                                        |
| 1466 | - continue;  | 
                                                        |
| 1519 | +		if (isset($had_ips[$row['poster_ip']]) && in_array($row['id_member'], $had_ips[$row['poster_ip']])) { | 
                                                        |
| 1520 | + continue;  | 
                                                        |
| 1521 | + }  | 
                                                        |
| 1467 | 1522 | $had_ips[$row['poster_ip']][] = $row['id_member'];  | 
                                                        
| 1468 | 1523 | |
| 1469 | 1524 | $duplicate_members[$row['poster_ip']][] = array(  | 
                                                        
@@ -1478,13 +1533,15 @@ discard block  | 
                                                    ||
| 1478 | 1533 | $smcFunc['db_free_result']($request);  | 
                                                        
| 1479 | 1534 | |
| 1480 | 1535 | // Now we have all the duplicate members, stick them with their respective member in the list.  | 
                                                        
| 1481 | - if (!empty($duplicate_members))  | 
                                                        |
| 1482 | - foreach ($members as $key => $member)  | 
                                                        |
| 1536 | +	if (!empty($duplicate_members)) { | 
                                                        |
| 1537 | + foreach ($members as $key => $member)  | 
                                                        |
| 1483 | 1538 |  		{ | 
                                                        
| 1484 | 1539 | if (isset($duplicate_members[$member['member_ip']]))  | 
                                                        
| 1485 | 1540 | $members[$key]['duplicate_members'] = $duplicate_members[$member['member_ip']];  | 
                                                        
| 1486 | - if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']]))  | 
                                                        |
| 1487 | - $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]);  | 
                                                        |
| 1541 | + }  | 
                                                        |
| 1542 | +			if ($member['member_ip'] != $member['member_ip2'] && isset($duplicate_members[$member['member_ip2']])) { | 
                                                        |
| 1543 | + $members[$key]['duplicate_members'] = array_merge($member['duplicate_members'], $duplicate_members[$member['member_ip2']]);  | 
                                                        |
| 1544 | + }  | 
                                                        |
| 1488 | 1545 | |
| 1489 | 1546 | // Check we don't have lots of the same member.  | 
                                                        
| 1490 | 1547 | $member_track = array($member['id_member']);  |