@@ -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 | |
@@ -38,8 +38,8 @@ discard block |
||
| 38 | 38 | $this->MAX_LZW_BITS = 12; |
| 39 | 39 | unset($this->Next, $this->Vals, $this->Stack, $this->Buf); |
| 40 | 40 | |
| 41 | - $this->Next = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
|
| 42 | - $this->Vals = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
|
| 41 | + $this->Next = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
|
| 42 | + $this->Vals = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
|
| 43 | 43 | $this->Stack = range(0, (1 << ($this->MAX_LZW_BITS + 1)) - 1); |
| 44 | 44 | $this->Buf = range(0, 279); |
| 45 | 45 | } |
@@ -278,9 +278,9 @@ discard block |
||
| 278 | 278 | for ($i = 0; $i < $this->m_nColors; $i++) |
| 279 | 279 | { |
| 280 | 280 | $ret .= |
| 281 | - chr(($this->m_arColors[$i] & 0x000000FF)) . // R |
|
| 282 | - chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G |
|
| 283 | - chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B |
|
| 281 | + chr(($this->m_arColors[$i] & 0x000000FF)) . // R |
|
| 282 | + chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G |
|
| 283 | + chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B |
|
| 284 | 284 | } |
| 285 | 285 | |
| 286 | 286 | return $ret; |
@@ -290,14 +290,14 @@ discard block |
||
| 290 | 290 | { |
| 291 | 291 | $rgb = intval($rgb) & 0xFFFFFF; |
| 292 | 292 | $r1 = ($rgb & 0x0000FF); |
| 293 | - $g1 = ($rgb & 0x00FF00) >> 8; |
|
| 293 | + $g1 = ($rgb & 0x00FF00) >> 8; |
|
| 294 | 294 | $b1 = ($rgb & 0xFF0000) >> 16; |
| 295 | 295 | $idx = -1; |
| 296 | 296 | |
| 297 | 297 | for ($i = 0; $i < $this->m_nColors; $i++) |
| 298 | 298 | { |
| 299 | 299 | $r2 = ($this->m_arColors[$i] & 0x000000FF); |
| 300 | - $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8; |
|
| 300 | + $g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8; |
|
| 301 | 301 | $b2 = ($this->m_arColors[$i] & 0x00FF0000) >> 16; |
| 302 | 302 | $d = abs($r2 - $r1) + abs($g2 - $g1) + abs($b2 - $b1); |
| 303 | 303 | |
@@ -384,7 +384,7 @@ |
||
| 384 | 384 | clean_cache(); |
| 385 | 385 | |
| 386 | 386 | // If warning decrement is enabled and we have people who have not had a new warning in 24 hours, lower their warning level. |
| 387 | - list (, , $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']); |
|
| 387 | + list (,, $modSettings['warning_decrement']) = explode(',', $modSettings['warning_settings']); |
|
| 388 | 388 | if ($modSettings['warning_decrement']) |
| 389 | 389 | { |
| 390 | 390 | // Find every member who has a warning level... |
@@ -1323,7 +1323,7 @@ discard block |
||
| 1323 | 1323 | 'class' => 'centercol', |
| 1324 | 1324 | ), |
| 1325 | 1325 | 'data' => array( |
| 1326 | - 'function' => function ($rowData) |
|
| 1326 | + 'function' => function($rowData) |
|
| 1327 | 1327 | { |
| 1328 | 1328 | $isChecked = $rowData['disabled'] ? '' : ' checked'; |
| 1329 | 1329 | $onClickHandler = $rowData['can_show_register'] ? sprintf(' onclick="document.getElementById(\'reg_%1$s\').disabled = !this.checked;"', $rowData['id']) : ''; |
@@ -1339,7 +1339,7 @@ discard block |
||
| 1339 | 1339 | 'class' => 'centercol', |
| 1340 | 1340 | ), |
| 1341 | 1341 | 'data' => array( |
| 1342 | - 'function' => function ($rowData) |
|
| 1342 | + 'function' => function($rowData) |
|
| 1343 | 1343 | { |
| 1344 | 1344 | $isChecked = $rowData['on_register'] && !$rowData['disabled'] ? ' checked' : ''; |
| 1345 | 1345 | $isDisabled = $rowData['can_show_register'] ? '' : ' disabled'; |
@@ -1386,15 +1386,15 @@ discard block |
||
| 1386 | 1386 | 'value' => $txt['custom_profile_fieldorder'], |
| 1387 | 1387 | ), |
| 1388 | 1388 | 'data' => array( |
| 1389 | - 'function' => function ($rowData) use ($context, $txt, $scripturl) |
|
| 1389 | + 'function' => function($rowData) use ($context, $txt, $scripturl) |
|
| 1390 | 1390 | { |
| 1391 | - $return = '<p class="centertext bold_text">'. $rowData['field_order'] .'<br />'; |
|
| 1391 | + $return = '<p class="centertext bold_text">' . $rowData['field_order'] . '<br />'; |
|
| 1392 | 1392 | |
| 1393 | 1393 | if ($rowData['field_order'] > 1) |
| 1394 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_up'] .'"></span></a>'; |
|
| 1394 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=up"><span class="toggle_up" title="' . $txt['custom_edit_order_move'] . ' ' . $txt['custom_edit_order_up'] . '"></span></a>'; |
|
| 1395 | 1395 | |
| 1396 | 1396 | if ($rowData['field_order'] < $context['custFieldsMaxOrder']) |
| 1397 | - $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="'. $txt['custom_edit_order_move'] .' '. $txt['custom_edit_order_down'] .'"></span></a>'; |
|
| 1397 | + $return .= '<a href="' . $scripturl . '?action=admin;area=featuresettings;sa=profileedit;fid=' . $rowData['id_field'] . ';move=down"><span class="toggle_down" title="' . $txt['custom_edit_order_move'] . ' ' . $txt['custom_edit_order_down'] . '"></span></a>'; |
|
| 1398 | 1398 | |
| 1399 | 1399 | $return .= '</p>'; |
| 1400 | 1400 | |
@@ -1412,7 +1412,7 @@ discard block |
||
| 1412 | 1412 | 'value' => $txt['custom_profile_fieldname'], |
| 1413 | 1413 | ), |
| 1414 | 1414 | 'data' => array( |
| 1415 | - 'function' => function ($rowData) use ($scripturl) |
|
| 1415 | + 'function' => function($rowData) use ($scripturl) |
|
| 1416 | 1416 | { |
| 1417 | 1417 | return sprintf('<a href="%1$s?action=admin;area=featuresettings;sa=profileedit;fid=%2$d">%3$s</a><div class="smalltext">%4$s</div>', $scripturl, $rowData['id_field'], $rowData['field_name'], $rowData['field_desc']); |
| 1418 | 1418 | }, |
@@ -1428,7 +1428,7 @@ discard block |
||
| 1428 | 1428 | 'value' => $txt['custom_profile_fieldtype'], |
| 1429 | 1429 | ), |
| 1430 | 1430 | 'data' => array( |
| 1431 | - 'function' => function ($rowData) use ($txt) |
|
| 1431 | + 'function' => function($rowData) use ($txt) |
|
| 1432 | 1432 | { |
| 1433 | 1433 | $textKey = sprintf('custom_profile_type_%1$s', $rowData['field_type']); |
| 1434 | 1434 | return isset($txt[$textKey]) ? $txt[$textKey] : $textKey; |
@@ -1446,7 +1446,7 @@ discard block |
||
| 1446 | 1446 | 'value' => $txt['custom_profile_active'], |
| 1447 | 1447 | ), |
| 1448 | 1448 | 'data' => array( |
| 1449 | - 'function' => function ($rowData) use ($txt) |
|
| 1449 | + 'function' => function($rowData) use ($txt) |
|
| 1450 | 1450 | { |
| 1451 | 1451 | return $rowData['active'] ? $txt['yes'] : $txt['no']; |
| 1452 | 1452 | }, |
@@ -1463,7 +1463,7 @@ discard block |
||
| 1463 | 1463 | 'value' => $txt['custom_profile_placement'], |
| 1464 | 1464 | ), |
| 1465 | 1465 | 'data' => array( |
| 1466 | - 'function' => function ($rowData) |
|
| 1466 | + 'function' => function($rowData) |
|
| 1467 | 1467 | { |
| 1468 | 1468 | global $txt, $context; |
| 1469 | 1469 | |
@@ -1698,7 +1698,7 @@ discard block |
||
| 1698 | 1698 | redirectexit('action=admin;area=featuresettings;sa=profile'); // @todo implement an error handler |
| 1699 | 1699 | |
| 1700 | 1700 | // All good, proceed. |
| 1701 | - $smcFunc['db_query']('',' |
|
| 1701 | + $smcFunc['db_query']('', ' |
|
| 1702 | 1702 | UPDATE {db_prefix}custom_fields |
| 1703 | 1703 | SET field_order = {int:old_order} |
| 1704 | 1704 | WHERE field_order = {int:new_order}', |
@@ -1707,7 +1707,7 @@ discard block |
||
| 1707 | 1707 | 'old_order' => $context['field']['order'], |
| 1708 | 1708 | ) |
| 1709 | 1709 | ); |
| 1710 | - $smcFunc['db_query']('',' |
|
| 1710 | + $smcFunc['db_query']('', ' |
|
| 1711 | 1711 | UPDATE {db_prefix}custom_fields |
| 1712 | 1712 | SET field_order = {int:new_order} |
| 1713 | 1713 | WHERE id_field = {int:id_field}', |
@@ -1809,7 +1809,7 @@ discard block |
||
| 1809 | 1809 | $smcFunc['db_free_result']($request); |
| 1810 | 1810 | |
| 1811 | 1811 | $unique = false; |
| 1812 | - for ($i = 0; !$unique && $i < 9; $i ++) |
|
| 1812 | + for ($i = 0; !$unique && $i < 9; $i++) |
|
| 1813 | 1813 | { |
| 1814 | 1814 | if (!in_array($col_name, $current_fields)) |
| 1815 | 1815 | $unique = true; |
@@ -1982,7 +1982,7 @@ discard block |
||
| 1982 | 1982 | ); |
| 1983 | 1983 | |
| 1984 | 1984 | // Re-arrange the order. |
| 1985 | - $smcFunc['db_query']('',' |
|
| 1985 | + $smcFunc['db_query']('', ' |
|
| 1986 | 1986 | UPDATE {db_prefix}custom_fields |
| 1987 | 1987 | SET field_order = field_order - 1 |
| 1988 | 1988 | WHERE field_order > {int:current_order}', |
@@ -2246,7 +2246,7 @@ discard block |
||
| 2246 | 2246 | $context['token_check'] = 'noti-admin'; |
| 2247 | 2247 | |
| 2248 | 2248 | // Specify our action since we'll want to post back here instead of the profile |
| 2249 | - $context['action'] = 'action=admin;area=featuresettings;sa=alerts;'. $context['session_var'] .'='. $context['session_id']; |
|
| 2249 | + $context['action'] = 'action=admin;area=featuresettings;sa=alerts;' . $context['session_var'] . '=' . $context['session_id']; |
|
| 2250 | 2250 | |
| 2251 | 2251 | loadTemplate('Profile'); |
| 2252 | 2252 | loadLanguage('Profile'); |
@@ -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); |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | |
| 232 | 232 | foreach ($message['custom_fields']['above_member'] as $custom) |
| 233 | 233 | echo ' |
| 234 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 234 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 235 | 235 | |
| 236 | 236 | echo ' |
| 237 | 237 | </ul> |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | if (!empty($message['custom_fields']['below_avatar'])) |
| 269 | 269 | foreach ($message['custom_fields']['below_avatar'] as $custom) |
| 270 | 270 | echo ' |
| 271 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 271 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 272 | 272 | |
| 273 | 273 | if (!$message['member']['is_guest']) |
| 274 | 274 | echo ' |
@@ -310,7 +310,7 @@ discard block |
||
| 310 | 310 | |
| 311 | 311 | foreach ($message['custom_fields']['icons'] as $custom) |
| 312 | 312 | echo ' |
| 313 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 313 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 314 | 314 | |
| 315 | 315 | echo ' |
| 316 | 316 | </ol> |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | if (!empty($message['custom_fields']['standard'])) |
| 369 | 369 | foreach ($message['custom_fields']['standard'] as $custom) |
| 370 | 370 | echo ' |
| 371 | - <li class="custom ', $custom['col_name'] ,'">', $custom['title'], ': ', $custom['value'], '</li>'; |
|
| 371 | + <li class="custom ', $custom['col_name'], '">', $custom['title'], ': ', $custom['value'], '</li>'; |
|
| 372 | 372 | |
| 373 | 373 | // Are we showing the warning status? |
| 374 | 374 | if ($message['member']['can_see_warning']) |
@@ -379,7 +379,7 @@ discard block |
||
| 379 | 379 | if (!empty($message['custom_fields']['bottom_poster'])) |
| 380 | 380 | foreach ($message['custom_fields']['bottom_poster'] as $custom) |
| 381 | 381 | echo ' |
| 382 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 382 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 383 | 383 | } |
| 384 | 384 | |
| 385 | 385 | // Done with the information about the poster... on to the post itself. |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | |
| 479 | 479 | foreach ($message['custom_fields']['above_signature'] as $custom) |
| 480 | 480 | echo ' |
| 481 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 481 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 482 | 482 | |
| 483 | 483 | echo ' |
| 484 | 484 | </ul> |
@@ -499,7 +499,7 @@ discard block |
||
| 499 | 499 | |
| 500 | 500 | foreach ($message['custom_fields']['below_signature'] as $custom) |
| 501 | 501 | echo ' |
| 502 | - <li class="custom ', $custom['col_name'] ,'">', $custom['value'], '</li>'; |
|
| 502 | + <li class="custom ', $custom['col_name'], '">', $custom['value'], '</li>'; |
|
| 503 | 503 | |
| 504 | 504 | echo ' |
| 505 | 505 | </ul> |
@@ -631,7 +631,7 @@ discard block |
||
| 631 | 631 | while ($message = $context['get_pmessage']('subject')) |
| 632 | 632 | { |
| 633 | 633 | echo ' |
| 634 | - <tr class="windowbg', $message['is_unread'] ? ' unread_pm' : '','"> |
|
| 634 | + <tr class="windowbg', $message['is_unread'] ? ' unread_pm' : '', '"> |
|
| 635 | 635 | <td class="table_icon"> |
| 636 | 636 | <script> |
| 637 | 637 | currentLabels[', $message['id'], '] = {'; |
@@ -903,12 +903,12 @@ discard block |
||
| 903 | 903 | // You can only reply if they are not a guest... |
| 904 | 904 | if (!$message['member']['is_guest']) |
| 905 | 905 | echo ' |
| 906 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button , '</a>', $context['menu_separator'], ' |
|
| 907 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button , '</a> ', $context['menu_separator']; |
|
| 906 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote;u=', $context['folder'] == 'sent' ? '' : $message['member']['id'], '">', $quote_button, '</a>', $context['menu_separator'], ' |
|
| 907 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';u=', $message['member']['id'], '">', $reply_button, '</a> ', $context['menu_separator']; |
|
| 908 | 908 | // This is for "forwarding" - even if the member is gone. |
| 909 | 909 | else |
| 910 | 910 | echo ' |
| 911 | - <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button , '</a>', $context['menu_separator']; |
|
| 911 | + <a href="', $scripturl, '?action=pm;sa=send;f=', $context['folder'], $context['current_label_id'] != -1 ? ';l=' . $context['current_label_id'] : '', ';pmsg=', $message['id'], ';quote">', $quote_button, '</a>', $context['menu_separator']; |
|
| 912 | 912 | } |
| 913 | 913 | |
| 914 | 914 | echo ' |
@@ -1008,7 +1008,7 @@ discard block |
||
| 1008 | 1008 | <div class="', empty($context['error_type']) || $context['error_type'] != 'serious' ? 'noticebox' : 'errorbox', '"', empty($context['post_error']['messages']) ? ' style="display: none"' : '', ' id="errors"> |
| 1009 | 1009 | <dl> |
| 1010 | 1010 | <dt> |
| 1011 | - <strong id="error_serious">', $txt['error_while_submitting'] , '</strong> |
|
| 1011 | + <strong id="error_serious">', $txt['error_while_submitting'], '</strong> |
|
| 1012 | 1012 | </dt> |
| 1013 | 1013 | <dd class="error" id="error_list"> |
| 1014 | 1014 | ', empty($context['post_error']['messages']) ? '' : implode('<br>', $context['post_error']['messages']), ' |
@@ -1064,7 +1064,7 @@ discard block |
||
| 1064 | 1064 | <span', (isset($context['post_error']['no_subject']) ? ' class="error"' : ''), ' id="caption_subject">', $txt['subject'], ':</span> |
| 1065 | 1065 | </dt> |
| 1066 | 1066 | <dd id="pm_subject"> |
| 1067 | - <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="80"',isset($context['post_error']['no_subject']) ? ' class="error"' : ' class="input_text"', '/> |
|
| 1067 | + <input type="text" name="subject" value="', $context['subject'], '" tabindex="', $context['tabindex']++, '" size="80" maxlength="80"', isset($context['post_error']['no_subject']) ? ' class="error"' : ' class="input_text"', '/> |
|
| 1068 | 1068 | </dd> |
| 1069 | 1069 | </dl><hr>'; |
| 1070 | 1070 | |
@@ -1427,7 +1427,7 @@ discard block |
||
| 1427 | 1427 | echo ' |
| 1428 | 1428 | <div class="padding"> |
| 1429 | 1429 | <input type="submit" name="save" value="', $txt['save'], '" class="button_submit"> |
| 1430 | - <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'] ,'" class="button_submit you_sure"> |
|
| 1430 | + <input type="submit" name="delete" value="', $txt['quickmod_delete_selected'], '" data-confirm="', $txt['pm_labels_delete'], '" class="button_submit you_sure"> |
|
| 1431 | 1431 | </div>'; |
| 1432 | 1432 | |
| 1433 | 1433 | echo ' |
@@ -1591,7 +1591,7 @@ discard block |
||
| 1591 | 1591 | if (!empty($context['rules'])) |
| 1592 | 1592 | echo ' |
| 1593 | 1593 | <input type="hidden" name="', $context['session_var'], '" value="', $context['session_id'], '"> |
| 1594 | - <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'] ,'" class="button_submit smalltext you_sure">'; |
|
| 1594 | + <input type="submit" name="delselected" value="', $txt['pm_delete_selected_rule'], '" data-confirm="', $txt['pm_js_delete_rule_confirm'], '" class="button_submit smalltext you_sure">'; |
|
| 1595 | 1595 | |
| 1596 | 1596 | echo ' |
| 1597 | 1597 | </div> |
@@ -1832,9 +1832,9 @@ discard block |
||
| 1832 | 1832 | |
| 1833 | 1833 | echo ' |
| 1834 | 1834 | <select name="acttype[', $k, ']" id="acttype', $k, '" onchange="updateActionDef(', $k, '); rebuildRuleDesc();"> |
| 1835 | - <option value="">', $txt['pm_rule_sel_action'] , ':</option> |
|
| 1836 | - <option value="lab"', $action['t'] == 'lab' ? ' selected' : '', '>', $txt['pm_rule_label'] , '</option> |
|
| 1837 | - <option value="del"', $action['t'] == 'del' ? ' selected' : '', '>', $txt['pm_rule_delete'] , '</option> |
|
| 1835 | + <option value="">', $txt['pm_rule_sel_action'], ':</option> |
|
| 1836 | + <option value="lab"', $action['t'] == 'lab' ? ' selected' : '', '>', $txt['pm_rule_label'], '</option> |
|
| 1837 | + <option value="del"', $action['t'] == 'del' ? ' selected' : '', '>', $txt['pm_rule_delete'], '</option> |
|
| 1838 | 1838 | </select> |
| 1839 | 1839 | <span id="labdiv', $k, '"> |
| 1840 | 1840 | <select name="labdef[', $k, ']" id="labdef', $k, '" onchange="rebuildRuleDesc();"> |
@@ -1951,7 +1951,7 @@ discard block |
||
| 1951 | 1951 | </div> |
| 1952 | 1952 | <ul class="quickbuttons"> |
| 1953 | 1953 | <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;id_draft=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '"><span class="generic_icons modifybutton"></span>', $txt['draft_edit'], '</a></li> |
| 1954 | - <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;delete=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['draft_remove'] ,'?" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['draft_delete'], '</a></li> |
|
| 1954 | + <li><a href="', $scripturl, '?action=pm;sa=showpmdrafts;delete=', $draft['id_draft'], ';', $context['session_var'], '=', $context['session_id'], '" data-confirm="', $txt['draft_remove'], '?" class="you_sure"><span class="generic_icons remove_button"></span>', $txt['draft_delete'], '</a></li> |
|
| 1955 | 1955 | </ul> |
| 1956 | 1956 | </div>'; |
| 1957 | 1957 | } |
@@ -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) |
@@ -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 | } |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | $server = trim($servers[array_rand($servers)]); |
| 62 | 62 | |
| 63 | 63 | // Normal host names do not contain slashes, while e.g. unix sockets do. Assume alternative transport pipe with port 0. |
| 64 | - if (strpos($server,'/') !== false) |
|
| 64 | + if (strpos($server, '/') !== false) |
|
| 65 | 65 | $host = $server; |
| 66 | 66 | else |
| 67 | 67 | { |