@@ -1259,7 +1259,7 @@ |
||
| 1259 | 1259 | // File Upload. |
| 1260 | 1260 | if ($context['can_post_attachment']) |
| 1261 | 1261 | { |
| 1262 | - $acceptedFiles = empty($context['allowed_extensions']) ? '' : implode(',', array_map(function ($val) use ($smcFunc) |
|
| 1262 | + $acceptedFiles = empty($context['allowed_extensions']) ? '' : implode(',', array_map(function($val) use ($smcFunc) |
|
| 1263 | 1263 | { |
| 1264 | 1264 | return !empty($val) ? ('.' . $smcFunc['htmltrim']($val)) : ''; |
| 1265 | 1265 | }, explode(',', $context['allowed_extensions']))); |
@@ -67,8 +67,7 @@ |
||
| 67 | 67 | $sound_letter = substr($sound_letter, strpos($sound_letter, 'data') + 8); |
| 68 | 68 | switch ($word[$i] === 's' ? 0 : mt_rand(0, 2)) |
| 69 | 69 | { |
| 70 | - case 0 : |
|
| 71 | - for ($j = 0, $n = strlen($sound_letter); $j < $n; $j++) |
|
| 70 | + case 0 : for ($j = 0, $n = strlen($sound_letter); $j < $n; $j++) |
|
| 72 | 71 | for ($k = 0, $m = round(mt_rand(15, 25) / 10); $k < $m; $k++) |
| 73 | 72 | $sound_word .= $word[$i] === 's' ? $sound_letter[$j] : chr(mt_rand(max(ord($sound_letter[$j]) - 1, 0x00), min(ord($sound_letter[$j]) + 1, 0xFF))); |
| 74 | 73 | break; |
@@ -282,7 +282,7 @@ |
||
| 282 | 282 | '{db_prefix}log_notify', |
| 283 | 283 | array('id_member' => 'int', 'id_topic' => 'int', 'id_board' => 'int'), |
| 284 | 284 | array($user_info['id'], $log['id_topic'], 0), |
| 285 | - array('id_member','id_topic', 'id_board') |
|
| 285 | + array('id_member', 'id_topic', 'id_board') |
|
| 286 | 286 | ); |
| 287 | 287 | } |
| 288 | 288 | else |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | { |
| 20 | 20 | /** |
| 21 | 21 | * Constants for reply types. |
| 22 | - */ |
|
| 22 | + */ |
|
| 23 | 23 | const NOTIFY_TYPE_REPLY_AND_MODIFY = 1; |
| 24 | 24 | const NOTIFY_TYPE_REPLY_AND_TOPIC_START_FOLLOWING = 2; |
| 25 | 25 | const NOTIFY_TYPE_ONLY_REPLIES = 3; |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Constants for frequencies. |
| 30 | - */ |
|
| 30 | + */ |
|
| 31 | 31 | const FREQUENCY_NOTHING = 0; |
| 32 | 32 | const FREQUENCY_EVERYTHING = 1; |
| 33 | 33 | const FREQUENCY_FIRST_UNREAD_MSG = 2; |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | if ($type == 'edit') |
| 119 | 119 | { |
| 120 | 120 | // Filter out members who have already been notified about this post's topic |
| 121 | - $unnotified = array_filter($watched, function ($member) |
|
| 121 | + $unnotified = array_filter($watched, function($member) |
|
| 122 | 122 | { |
| 123 | 123 | return empty($member['sent']); |
| 124 | 124 | }); |
@@ -204,8 +204,7 @@ discard block |
||
| 204 | 204 | if (!empty($member_data['id_topic']) && $type != 'topic' && !empty($prefs[$member_id])) |
| 205 | 205 | { |
| 206 | 206 | $pref = !empty($prefs[$member_id]['topic_notify_' . $topicOptions['id']]) ? |
| 207 | - $prefs[$member_id]['topic_notify_' . $topicOptions['id']] : |
|
| 208 | - (!empty($prefs[$member_id]['topic_notify']) ? $prefs[$member_id]['topic_notify'] : 0); |
|
| 207 | + $prefs[$member_id]['topic_notify_' . $topicOptions['id']] : (!empty($prefs[$member_id]['topic_notify']) ? $prefs[$member_id]['topic_notify'] : 0); |
|
| 209 | 208 | |
| 210 | 209 | $message_type = 'notification_' . $type; |
| 211 | 210 | |
@@ -224,8 +223,7 @@ discard block |
||
| 224 | 223 | elseif ($type == 'topic') |
| 225 | 224 | { |
| 226 | 225 | $pref = !empty($prefs[$member_id]['board_notify_' . $topicOptions['board']]) ? |
| 227 | - $prefs[$member_id]['board_notify_' . $topicOptions['board']] : |
|
| 228 | - (!empty($prefs[$member_id]['board_notify']) ? $prefs[$member_id]['board_notify'] : 0); |
|
| 226 | + $prefs[$member_id]['board_notify_' . $topicOptions['board']] : (!empty($prefs[$member_id]['board_notify']) ? $prefs[$member_id]['board_notify'] : 0); |
|
| 229 | 227 | |
| 230 | 228 | $content_type = 'board'; |
| 231 | 229 | |
@@ -267,7 +267,6 @@ |
||
| 267 | 267 | $user_info = $real_user_info; |
| 268 | 268 | unset($real_user_info); |
| 269 | 269 | } |
| 270 | - |
|
| 271 | 270 | else |
| 272 | 271 | $user_info = null; |
| 273 | 272 | |
@@ -310,7 +310,7 @@ |
||
| 310 | 310 | { |
| 311 | 311 | /** |
| 312 | 312 | * Constants for notification types. |
| 313 | - */ |
|
| 313 | + */ |
|
| 314 | 314 | const RECEIVE_NOTIFY_EMAIL = 0x02; |
| 315 | 315 | const RECEIVE_NOTIFY_ALERT = 0x01; |
| 316 | 316 | |
@@ -93,7 +93,6 @@ |
||
| 93 | 93 | if ($ts <= 0 || $ts % 15 != 0 || time() - $ts < 0 || time() - $ts > 20) |
| 94 | 94 | obExit_cron(); |
| 95 | 95 | } |
| 96 | - |
|
| 97 | 96 | else |
| 98 | 97 | $_SERVER['SERVER_PROTOCOL'] = 'HTTP/1.0'; |
| 99 | 98 | |
@@ -93,14 +93,14 @@ discard block |
||
| 93 | 93 | ), |
| 94 | 94 | 'ignore' => array( |
| 95 | 95 | 'label' => $report['ignore'] ? $txt['mc_reportedp_unignore'] : $txt['mc_reportedp_ignore'], |
| 96 | - 'href' => $scripturl.'?action=moderate;area=reported'.$context['report_type'].';sa=handle;ignore='.(int)!$report['ignore'].';rid='.$report['id'].';start='.$context['start'].';'.$context['session_var'].'='.$context['session_id'].';'.$context['mod-report-ignore_token_var'].'='.$context['mod-report-ignore_token'], |
|
| 96 | + 'href' => $scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=handle;ignore=' . (int) !$report['ignore'] . ';rid=' . $report['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';' . $context['mod-report-ignore_token_var'] . '=' . $context['mod-report-ignore_token'], |
|
| 97 | 97 | 'javascript' => !$report['ignore'] ? ' data-confirm="' . $txt['mc_reportedp_ignore_confirm'] . '"' : '', |
| 98 | 98 | 'class' => 'you_sure', |
| 99 | 99 | 'icon' => 'ignore' |
| 100 | 100 | ), |
| 101 | 101 | 'close' => array( |
| 102 | 102 | 'label' => $context['view_closed'] ? $txt['mc_reportedp_open'] : $txt['mc_reportedp_close'], |
| 103 | - 'href' => $scripturl.'?action=moderate;area=reported'.$context['report_type'].';sa=handle;closed='.(int)!$report['closed'].';rid='.$report['id'].';start='.$context['start'].';'.$context['session_var'].'='.$context['session_id'].';'.$context['mod-report-closed_token_var'].'='.$context['mod-report-closed_token'], |
|
| 103 | + 'href' => $scripturl . '?action=moderate;area=reported' . $context['report_type'] . ';sa=handle;closed=' . (int) !$report['closed'] . ';rid=' . $report['id'] . ';start=' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'] . ';' . $context['mod-report-closed_token_var'] . '=' . $context['mod-report-closed_token'], |
|
| 104 | 104 | 'icon' => $context['view_closed'] ? 'folder' : 'close', |
| 105 | 105 | ), |
| 106 | 106 | ); |
@@ -109,8 +109,8 @@ discard block |
||
| 109 | 109 | if ($context['report_type'] == 'posts') |
| 110 | 110 | $context['reports'][$key]['quickbuttons']['delete'] = array( |
| 111 | 111 | 'label' => $txt['mc_reportedp_delete'], |
| 112 | - 'href' => $scripturl.'?action=deletemsg;topic='.$report['topic']['id'].'.0;msg='.$report['topic']['id_msg'].';modcenter;'.$context['session_var'].'='.$context['session_id'], |
|
| 113 | - 'javascript' => 'data-confirm="'.$txt['mc_reportedp_delete_confirm'].'"', |
|
| 112 | + 'href' => $scripturl . '?action=deletemsg;topic=' . $report['topic']['id'] . '.0;msg=' . $report['topic']['id_msg'] . ';modcenter;' . $context['session_var'] . '=' . $context['session_id'], |
|
| 113 | + 'javascript' => 'data-confirm="' . $txt['mc_reportedp_delete_confirm'] . '"', |
|
| 114 | 114 | 'class' => 'you_sure', |
| 115 | 115 | 'icon' => 'delete', |
| 116 | 116 | 'show' => !$report['closed'] && (is_array($context['report_remove_any_boards']) && in_array($report['topic']['id_board'], $context['report_remove_any_boards'])) |
@@ -118,9 +118,9 @@ discard block |
||
| 118 | 118 | |
| 119 | 119 | // Ban reported member/post author link |
| 120 | 120 | if ($context['report_type'] == 'members') |
| 121 | - $ban_link = $scripturl.'?action=admin;area=ban;sa=add;u='.$report['user']['id'].';'.$context['session_var'].'='.$context['session_id']; |
|
| 121 | + $ban_link = $scripturl . '?action=admin;area=ban;sa=add;u=' . $report['user']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']; |
|
| 122 | 122 | else |
| 123 | - $ban_link = $scripturl.'?action=admin;area=ban;sa=add'.(!empty($report['author']['id']) ? ';u='.$report['author']['id'] : ';msg='.$report['topic']['id_msg']).';'.$context['session_var'].'='.$context['session_id']; |
|
| 123 | + $ban_link = $scripturl . '?action=admin;area=ban;sa=add' . (!empty($report['author']['id']) ? ';u=' . $report['author']['id'] : ';msg=' . $report['topic']['id_msg']) . ';' . $context['session_var'] . '=' . $context['session_id']; |
|
| 124 | 124 | |
| 125 | 125 | $context['reports'][$key]['quickbuttons'] += array( |
| 126 | 126 | 'ban' => array( |
@@ -130,7 +130,7 @@ discard block |
||
| 130 | 130 | 'show' => !$report['closed'] && !empty($context['report_manage_bans']) && ($context['report_type'] == 'posts' || $context['report_type'] == 'members' && !empty($report['user']['id'])) |
| 131 | 131 | ), |
| 132 | 132 | 'quickmod' => array( |
| 133 | - 'content' => '<input type="checkbox" name="close[]" value="'.$report['id'].'">', |
|
| 133 | + 'content' => '<input type="checkbox" name="close[]" value="' . $report['id'] . '">', |
|
| 134 | 134 | 'show' => !$context['view_closed'] |
| 135 | 135 | ) |
| 136 | 136 | ); |
@@ -1655,14 +1655,14 @@ discard block |
||
| 1655 | 1655 | $output['quickbuttons'] = array( |
| 1656 | 1656 | 'quote' => array( |
| 1657 | 1657 | 'label' => $txt['quote_action'], |
| 1658 | - 'href' => $scripturl.'?action=post;quote='.$output['id'].';topic='.$context['current_topic'], '.'.$context['start'].';last_msg='.$context['topic_last_message'], |
|
| 1659 | - 'javascript' => 'onclick="return oQuickReply.quote('.$output['id'].');"', |
|
| 1658 | + 'href' => $scripturl . '?action=post;quote=' . $output['id'] . ';topic=' . $context['current_topic'], '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], |
|
| 1659 | + 'javascript' => 'onclick="return oQuickReply.quote(' . $output['id'] . ');"', |
|
| 1660 | 1660 | 'icon' => 'quote', |
| 1661 | 1661 | 'show' => $context['can_quote'] |
| 1662 | 1662 | ), |
| 1663 | 1663 | 'quote_selected' => array( |
| 1664 | 1664 | 'label' => $txt['quote_selected_action'], |
| 1665 | - 'id' => 'quoteSelected_'. $output['id'], |
|
| 1665 | + 'id' => 'quoteSelected_' . $output['id'], |
|
| 1666 | 1666 | 'href' => 'javascript:void(0)', |
| 1667 | 1667 | 'custom' => 'style="display:none"', |
| 1668 | 1668 | 'icon' => 'quote_selected', |
@@ -1671,73 +1671,73 @@ discard block |
||
| 1671 | 1671 | 'quick_edit' => array( |
| 1672 | 1672 | 'label' => $txt['quick_edit'], |
| 1673 | 1673 | 'class' => 'quick_edit', |
| 1674 | - 'id' =>' modify_button_'. $output['id'], |
|
| 1675 | - 'custom' => 'onclick="oQuickModify.modifyMsg(\''.$output['id'].'\', \''.!empty($modSettings['toggle_subject']).'\')"', |
|
| 1674 | + 'id' =>' modify_button_' . $output['id'], |
|
| 1675 | + 'custom' => 'onclick="oQuickModify.modifyMsg(\'' . $output['id'] . '\', \'' . !empty($modSettings['toggle_subject']) . '\')"', |
|
| 1676 | 1676 | 'icon' => 'quick_edit_button', |
| 1677 | 1677 | 'show' => $output['can_modify'] |
| 1678 | 1678 | ), |
| 1679 | 1679 | 'more' => array( |
| 1680 | 1680 | 'modify' => array( |
| 1681 | 1681 | 'label' => $txt['modify'], |
| 1682 | - 'href' => $scripturl.'?action=post;msg='.$output['id'].';topic='.$context['current_topic'].'.'.$context['start'], |
|
| 1682 | + 'href' => $scripturl . '?action=post;msg=' . $output['id'] . ';topic=' . $context['current_topic'] . '.' . $context['start'], |
|
| 1683 | 1683 | 'icon' => 'modify_button', |
| 1684 | 1684 | 'show' => $output['can_modify'] |
| 1685 | 1685 | ), |
| 1686 | 1686 | 'remove_topic' => array( |
| 1687 | 1687 | 'label' => $txt['remove_topic'], |
| 1688 | - 'href' => $scripturl.'?action=removetopic2;topic='.$context['current_topic'].'.'.$context['start'].';'.$context['session_var'].'='.$context['session_id'], |
|
| 1689 | - 'javascript' => 'data-confirm="'.$txt['are_sure_remove_topic'].'"', |
|
| 1688 | + 'href' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
|
| 1689 | + 'javascript' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', |
|
| 1690 | 1690 | 'class' => 'you_sure', |
| 1691 | 1691 | 'icon' => 'remove_button', |
| 1692 | 1692 | 'show' => $context['can_delete'] && ($context['topic_first_message'] == $output['id']) |
| 1693 | 1693 | ), |
| 1694 | 1694 | 'remove' => array( |
| 1695 | 1695 | 'label' => $txt['remove'], |
| 1696 | - 'href' => $scripturl.'?action=deletemsg;topic='.$context['current_topic'].'.'.$context['start'].';msg='.$output['id'].';'.$context['session_var'].'='.$context['session_id'], |
|
| 1697 | - 'javascript' => 'data-confirm="'.$txt['remove_message_question'].'"', |
|
| 1696 | + 'href' => $scripturl . '?action=deletemsg;topic=' . $context['current_topic'] . '.' . $context['start'] . ';msg=' . $output['id'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
|
| 1697 | + 'javascript' => 'data-confirm="' . $txt['remove_message_question'] . '"', |
|
| 1698 | 1698 | 'class' => 'you_sure', |
| 1699 | 1699 | 'icon' => 'remove_button', |
| 1700 | 1700 | 'show' => $output['can_remove'] && ($context['topic_first_message'] != $output['id']) |
| 1701 | 1701 | ), |
| 1702 | 1702 | 'split' => array( |
| 1703 | 1703 | 'label' => $txt['split'], |
| 1704 | - 'href' => $scripturl.'?action=splittopics;topic='.$context['current_topic'].'.0;at='.$output['id'], |
|
| 1704 | + 'href' => $scripturl . '?action=splittopics;topic=' . $context['current_topic'] . '.0;at=' . $output['id'], |
|
| 1705 | 1705 | 'icon' => 'split_button', |
| 1706 | 1706 | 'show' => $context['can_split'] && !empty($context['real_num_replies']) |
| 1707 | 1707 | ), |
| 1708 | 1708 | 'report' => array( |
| 1709 | 1709 | 'label' => $txt['report_to_mod'], |
| 1710 | - 'href' => $scripturl.'?action=reporttm;topic='.$context['current_topic'].'.'.$output['counter'].';msg='.$output['id'], |
|
| 1710 | + 'href' => $scripturl . '?action=reporttm;topic=' . $context['current_topic'] . '.' . $output['counter'] . ';msg=' . $output['id'], |
|
| 1711 | 1711 | 'icon' => 'error', |
| 1712 | 1712 | 'show' => $context['can_report_moderator'] |
| 1713 | 1713 | ), |
| 1714 | 1714 | 'warn' => array( |
| 1715 | 1715 | 'label' => $txt['issue_warning'], |
| 1716 | - 'href' => $scripturl.'?action=profile;area=issuewarning;u='.$output['member']['id'].';msg='.$output['id'], |
|
| 1716 | + 'href' => $scripturl . '?action=profile;area=issuewarning;u=' . $output['member']['id'] . ';msg=' . $output['id'], |
|
| 1717 | 1717 | 'icon' => 'warn_button', |
| 1718 | 1718 | 'show' => $context['can_issue_warning'] && !$output['is_message_author'] && !$output['member']['is_guest'] |
| 1719 | 1719 | ), |
| 1720 | 1720 | 'restore' => array( |
| 1721 | 1721 | 'label' => $txt['restore_message'], |
| 1722 | - 'href' => $scripturl.'?action=restoretopic;msgs='.$output['id'].';'.$context['session_var'].'='.$context['session_id'], |
|
| 1722 | + 'href' => $scripturl . '?action=restoretopic;msgs=' . $output['id'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
|
| 1723 | 1723 | 'icon' => 'restore_button', |
| 1724 | 1724 | 'show' => $context['can_restore_msg'] |
| 1725 | 1725 | ), |
| 1726 | 1726 | 'approve' => array( |
| 1727 | 1727 | 'label' => $txt['approve'], |
| 1728 | - 'href' => $scripturl.'?action=moderate;area=postmod;sa=approve;topic='.$context['current_topic'].'.'.$context['start'].';msg='.$output['id'].';'.$context['session_var'].'='.$context['session_id'], |
|
| 1728 | + 'href' => $scripturl . '?action=moderate;area=postmod;sa=approve;topic=' . $context['current_topic'] . '.' . $context['start'] . ';msg=' . $output['id'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
|
| 1729 | 1729 | 'icon' => 'approve_button', |
| 1730 | 1730 | 'show' => $output['can_approve'] |
| 1731 | 1731 | ), |
| 1732 | 1732 | 'unapprove' => array( |
| 1733 | 1733 | 'label' => $txt['unapprove'], |
| 1734 | - 'href' => $scripturl.'?action=moderate;area=postmod;sa=approve;topic='.$context['current_topic'].'.'.$context['start'].';msg='.$output['id'].';'.$context['session_var'].'='.$context['session_id'], |
|
| 1734 | + 'href' => $scripturl . '?action=moderate;area=postmod;sa=approve;topic=' . $context['current_topic'] . '.' . $context['start'] . ';msg=' . $output['id'] . ';' . $context['session_var'] . '=' . $context['session_id'], |
|
| 1735 | 1735 | 'icon' => 'unapprove_button', |
| 1736 | 1736 | 'show' => $output['can_unapprove'] |
| 1737 | 1737 | ), |
| 1738 | 1738 | ), |
| 1739 | 1739 | 'quickmod' => array( |
| 1740 | - 'id' => 'in_topic_mod_check_'. $output['id'], |
|
| 1740 | + 'id' => 'in_topic_mod_check_' . $output['id'], |
|
| 1741 | 1741 | 'custom' => 'style="display: none;"', |
| 1742 | 1742 | 'content' => '', |
| 1743 | 1743 | 'show' => !empty($options['display_quick_mod']) && $options['display_quick_mod'] == 1 && $output['can_remove'], |
@@ -2169,7 +2169,7 @@ |
||
| 2169 | 2169 | { |
| 2170 | 2170 | uasort($loaded_attachments, function($a, $b) { |
| 2171 | 2171 | if ($a['filesize'] == $b['filesize']) |
| 2172 | - return 0; |
|
| 2172 | + return 0; |
|
| 2173 | 2173 | return ($a['filesize'] < $b['filesize']) ? -1 : 1; |
| 2174 | 2174 | }); |
| 2175 | 2175 | } |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | ); |
| 92 | 92 | foreach (array('action', 'sa', 'type', 'board', 'boards', 'c', 'u', 'limit', 'offset') as $var) |
| 93 | 93 | if (isset($_GET[$var])) |
| 94 | - $feed_meta['self'] .= ($feed_meta['self'] === $scripturl ? '?' : ';' ) . $var . '=' . $_GET[$var]; |
|
| 94 | + $feed_meta['self'] .= ($feed_meta['self'] === $scripturl ? '?' : ';') . $var . '=' . $_GET[$var]; |
|
| 95 | 95 | |
| 96 | 96 | // Handle the cases where a board, boards, or category is asked for. |
| 97 | 97 | $query_this_board = 1; |
@@ -303,17 +303,17 @@ discard block |
||
| 303 | 303 | * namespaces, which could cause it to mangle the XML horrifically |
| 304 | 304 | * during processing. |
| 305 | 305 | */ |
| 306 | - $smf_ns = 'htt'.'p:/'.'/ww'.'w.simple'.'machines.o'.'rg/xml/' . $subaction; |
|
| 306 | + $smf_ns = 'htt' . 'p:/' . '/ww' . 'w.simple' . 'machines.o' . 'rg/xml/' . $subaction; |
|
| 307 | 307 | |
| 308 | 308 | // Allow mods to add extra namespaces and tags to the feed/channel |
| 309 | 309 | $namespaces = array( |
| 310 | 310 | 'rss' => array(), |
| 311 | - 'rss2' => array('atom' => 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/2005/Atom'), |
|
| 312 | - 'atom' => array('' => 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/2005/Atom'), |
|
| 311 | + 'rss2' => array('atom' => 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/2005/Atom'), |
|
| 312 | + 'atom' => array('' => 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/2005/Atom'), |
|
| 313 | 313 | 'rdf' => array( |
| 314 | - '' => 'htt'.'p:/'.'/purl.o'.'rg/rss/1.0/', |
|
| 315 | - 'rdf' => 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/1999/02/22-rdf-syntax-ns#', |
|
| 316 | - 'dc' => 'htt'.'p:/'.'/purl.o'.'rg/dc/elements/1.1/', |
|
| 314 | + '' => 'htt' . 'p:/' . '/purl.o' . 'rg/rss/1.0/', |
|
| 315 | + 'rdf' => 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/1999/02/22-rdf-syntax-ns#', |
|
| 316 | + 'dc' => 'htt' . 'p:/' . '/purl.o' . 'rg/dc/elements/1.1/', |
|
| 317 | 317 | ), |
| 318 | 318 | 'smf' => array( |
| 319 | 319 | 'smf' => $smf_ns, |
@@ -2167,7 +2167,8 @@ |
||
| 2167 | 2167 | // Sort the attachments by size to make things easier below |
| 2168 | 2168 | if (!empty($loaded_attachments)) |
| 2169 | 2169 | { |
| 2170 | - uasort($loaded_attachments, function($a, $b) { |
|
| 2170 | + uasort($loaded_attachments, function($a, $b) |
|
| 2171 | + { |
|
| 2171 | 2172 | if ($a['filesize'] == $b['filesize']) |
| 2172 | 2173 | return 0; |
| 2173 | 2174 | return ($a['filesize'] < $b['filesize']) ? -1 : 1; |
@@ -468,7 +468,7 @@ discard block |
||
| 468 | 468 | |
| 469 | 469 | // Figure out the filename we'll tell the browser. |
| 470 | 470 | $datatypes = file_exists($progressfile) ? array_keys($smcFunc['json_decode'](file_get_contents($progressfile), true)) : array('profile'); |
| 471 | - $included_desc = array_map(function ($datatype) use ($txt) { return $txt[$datatype]; }, $datatypes); |
|
| 471 | + $included_desc = array_map(function($datatype) use ($txt) { return $txt[$datatype]; }, $datatypes); |
|
| 472 | 472 | |
| 473 | 473 | $dlfilename = array_merge(array($context['forum_name'], $context['member']['username']), $included_desc); |
| 474 | 474 | $dlfilename = preg_replace('/[^\p{L}\p{M}\p{N}_]+/u', '-', str_replace('"', '', un_htmlspecialchars(strip_tags(implode('_', $dlfilename))))); |
@@ -783,9 +783,9 @@ discard block |
||
| 783 | 783 | $xslt_variables = array(); |
| 784 | 784 | |
| 785 | 785 | // Do not change any of these to HTTPS URLs. For explanation, see comments in the buildXmlFeed() function. |
| 786 | - $smf_ns = 'htt'.'p:/'.'/ww'.'w.simple'.'machines.o'.'rg/xml/profile'; |
|
| 787 | - $xslt_ns = 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/1999/XSL/Transform'; |
|
| 788 | - $html_ns = 'htt'.'p:/'.'/ww'.'w.w3.o'.'rg/1999/xhtml'; |
|
| 786 | + $smf_ns = 'htt' . 'p:/' . '/ww' . 'w.simple' . 'machines.o' . 'rg/xml/profile'; |
|
| 787 | + $xslt_ns = 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/1999/XSL/Transform'; |
|
| 788 | + $html_ns = 'htt' . 'p:/' . '/ww' . 'w.w3.o' . 'rg/1999/xhtml'; |
|
| 789 | 789 | |
| 790 | 790 | require_once($sourcedir . DIRECTORY_SEPARATOR . 'News.php'); |
| 791 | 791 | |
@@ -1690,14 +1690,14 @@ discard block |
||
| 1690 | 1690 | |
| 1691 | 1691 | if (!empty($context['export_css_header'])) |
| 1692 | 1692 | { |
| 1693 | - $stylesheet['css_js'] .= ' |
|
| 1693 | + $stylesheet['css_js'] .= ' |
|
| 1694 | 1694 | <style><![CDATA[' . "\n" . implode("\n", $context['export_css_header']) . "\n" . ']]> |
| 1695 | 1695 | </style>'; |
| 1696 | 1696 | } |
| 1697 | 1697 | |
| 1698 | 1698 | if (!empty($context['export_javascript_vars'])) |
| 1699 | 1699 | { |
| 1700 | - $stylesheet['css_js'] .= ' |
|
| 1700 | + $stylesheet['css_js'] .= ' |
|
| 1701 | 1701 | <script><![CDATA['; |
| 1702 | 1702 | |
| 1703 | 1703 | foreach ($context['export_javascript_vars'] as $var => $val) |
@@ -1733,7 +1733,7 @@ discard block |
||
| 1733 | 1733 | |
| 1734 | 1734 | if (!empty($context['export_javascript_inline']['standard'])) |
| 1735 | 1735 | { |
| 1736 | - $stylesheet['css_js'] .= ' |
|
| 1736 | + $stylesheet['css_js'] .= ' |
|
| 1737 | 1737 | <script><![CDATA[' . "\n" . implode("\n", $context['export_javascript_inline']['standard']) . "\n" . ']]> |
| 1738 | 1738 | </script>'; |
| 1739 | 1739 | } |
@@ -1745,7 +1745,7 @@ discard block |
||
| 1745 | 1745 | |
| 1746 | 1746 | $stylesheet['css_js'] .= "\n\t" . str_replace("\n", "\n\t", implode("\n", $context['export_javascript_inline']['defer'])); |
| 1747 | 1747 | |
| 1748 | - $stylesheet['css_js'] .= "\n" . '});'. "\n" . ']]> |
|
| 1748 | + $stylesheet['css_js'] .= "\n" . '});' . "\n" . ']]> |
|
| 1749 | 1749 | </script>'; |
| 1750 | 1750 | } |
| 1751 | 1751 | |
@@ -1826,7 +1826,7 @@ discard block |
||
| 1826 | 1826 | $css_to_minify = array(); |
| 1827 | 1827 | $normal_css_files = array(); |
| 1828 | 1828 | |
| 1829 | - usort($context['css_files'], function ($a, $b) |
|
| 1829 | + usort($context['css_files'], function($a, $b) |
|
| 1830 | 1830 | { |
| 1831 | 1831 | return $a['options']['order_pos'] < $b['options']['order_pos'] ? -1 : ($a['options']['order_pos'] > $b['options']['order_pos'] ? 1 : 0); |
| 1832 | 1832 | }); |
@@ -468,7 +468,9 @@ |
||
| 468 | 468 | |
| 469 | 469 | // Figure out the filename we'll tell the browser. |
| 470 | 470 | $datatypes = file_exists($progressfile) ? array_keys($smcFunc['json_decode'](file_get_contents($progressfile), true)) : array('profile'); |
| 471 | - $included_desc = array_map(function ($datatype) use ($txt) { return $txt[$datatype]; }, $datatypes); |
|
| 471 | + $included_desc = array_map(function ($datatype) use ($txt) |
|
| 472 | + { |
|
| 473 | +return $txt[$datatype]; }, $datatypes); |
|
| 472 | 474 | |
| 473 | 475 | $dlfilename = array_merge(array($context['forum_name'], $context['member']['username']), $included_desc); |
| 474 | 476 | $dlfilename = preg_replace('/[^\p{L}\p{M}\p{N}_]+/u', '-', str_replace('"', '', un_htmlspecialchars(strip_tags(implode('_', $dlfilename))))); |