@@ -19,8 +19,9 @@ discard block |
||
| 19 | 19 | * @version 2.1 Beta 4 |
| 20 | 20 | */ |
| 21 | 21 | |
| 22 | -if (!defined('SMF')) |
|
| 22 | +if (!defined('SMF')) { |
|
| 23 | 23 | die('No direct access...'); |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | /** |
| 26 | 27 | * Class gif_lzw_compression |
@@ -52,13 +53,15 @@ discard block |
||
| 52 | 53 | |
| 53 | 54 | $this->LZWCommand($data, true); |
| 54 | 55 | |
| 55 | - while (($iIndex = $this->LZWCommand($data, false)) >= 0) |
|
| 56 | - $ret .= chr($iIndex); |
|
| 56 | + while (($iIndex = $this->LZWCommand($data, false)) >= 0) { |
|
| 57 | + $ret .= chr($iIndex); |
|
| 58 | + } |
|
| 57 | 59 | |
| 58 | 60 | $datLen = $stLen - strlen($data); |
| 59 | 61 | |
| 60 | - if ($iIndex != -2) |
|
| 61 | - return false; |
|
| 62 | + if ($iIndex != -2) { |
|
| 63 | + return false; |
|
| 64 | + } |
|
| 62 | 65 | |
| 63 | 66 | return $ret; |
| 64 | 67 | } |
@@ -140,8 +143,9 @@ discard block |
||
| 140 | 143 | return $this->FirstCode; |
| 141 | 144 | } |
| 142 | 145 | |
| 143 | - if ($Code == $this->EndCode) |
|
| 144 | - return -2; |
|
| 146 | + if ($Code == $this->EndCode) { |
|
| 147 | + return -2; |
|
| 148 | + } |
|
| 145 | 149 | |
| 146 | 150 | $InCode = $Code; |
| 147 | 151 | if ($Code >= $this->MaxCode) |
@@ -156,8 +160,10 @@ discard block |
||
| 156 | 160 | $this->Stack[$this->sp] = $this->Vals[$Code]; |
| 157 | 161 | $this->sp++; |
| 158 | 162 | |
| 159 | - if ($Code == $this->Next[$Code]) // Circular table entry, big GIF Error! |
|
| 163 | + if ($Code == $this->Next[$Code]) { |
|
| 164 | + // Circular table entry, big GIF Error! |
|
| 160 | 165 | return -1; |
| 166 | + } |
|
| 161 | 167 | |
| 162 | 168 | $Code = $this->Next[$Code]; |
| 163 | 169 | } |
@@ -207,8 +213,9 @@ discard block |
||
| 207 | 213 | if ($this->Done) |
| 208 | 214 | { |
| 209 | 215 | // Ran off the end of my bits... |
| 210 | - if ($this->CurBit >= $this->LastBit) |
|
| 211 | - return 0; |
|
| 216 | + if ($this->CurBit >= $this->LastBit) { |
|
| 217 | + return 0; |
|
| 218 | + } |
|
| 212 | 219 | |
| 213 | 220 | return -1; |
| 214 | 221 | } |
@@ -221,13 +228,14 @@ discard block |
||
| 221 | 228 | |
| 222 | 229 | if ($count) |
| 223 | 230 | { |
| 224 | - for ($i = 0; $i < $count; $i++) |
|
| 225 | - $this->Buf[2 + $i] = ord($data{$i}); |
|
| 231 | + for ($i = 0; $i < $count; $i++) { |
|
| 232 | + $this->Buf[2 + $i] = ord($data{$i}); |
|
| 233 | + } |
|
| 226 | 234 | |
| 227 | 235 | $data = substr($data, $count); |
| 236 | + } else { |
|
| 237 | + $this->Done = 1; |
|
| 228 | 238 | } |
| 229 | - else |
|
| 230 | - $this->Done = 1; |
|
| 231 | 239 | |
| 232 | 240 | $this->LastByte = 2 + $count; |
| 233 | 241 | $this->CurBit = ($this->CurBit - $this->LastBit) + 16; |
@@ -235,8 +243,9 @@ discard block |
||
| 235 | 243 | } |
| 236 | 244 | |
| 237 | 245 | $iRet = 0; |
| 238 | - for ($i = $this->CurBit, $j = 0; $j < $this->CodeSize; $i++, $j++) |
|
| 239 | - $iRet |= (($this->Buf[intval($i / 8)] & (1 << ($i % 8))) != 0) << $j; |
|
| 246 | + for ($i = $this->CurBit, $j = 0; $j < $this->CodeSize; $i++, $j++) { |
|
| 247 | + $iRet |= (($this->Buf[intval($i / 8)] & (1 << ($i % 8))) != 0) << $j; |
|
| 248 | + } |
|
| 240 | 249 | |
| 241 | 250 | $this->CurBit += $this->CodeSize; |
| 242 | 251 | return $iRet; |
@@ -261,8 +270,9 @@ discard block |
||
| 261 | 270 | for ($i = 0; $i < $num; $i++) |
| 262 | 271 | { |
| 263 | 272 | $rgb = substr($lpData, $i * 3, 3); |
| 264 | - if (strlen($rgb) < 3) |
|
| 265 | - return false; |
|
| 273 | + if (strlen($rgb) < 3) { |
|
| 274 | + return false; |
|
| 275 | + } |
|
| 266 | 276 | |
| 267 | 277 | $this->m_arColors[] = (ord($rgb[2]) << 16) + (ord($rgb[1]) << 8) + ord($rgb[0]); |
| 268 | 278 | $this->m_nColors++; |
@@ -329,13 +339,15 @@ discard block |
||
| 329 | 339 | $hdrLen = 0; |
| 330 | 340 | |
| 331 | 341 | $this->m_lpVer = substr($lpData, 0, 6); |
| 332 | - if (($this->m_lpVer != 'GIF87a') && ($this->m_lpVer != 'GIF89a')) |
|
| 333 | - return false; |
|
| 342 | + if (($this->m_lpVer != 'GIF87a') && ($this->m_lpVer != 'GIF89a')) { |
|
| 343 | + return false; |
|
| 344 | + } |
|
| 334 | 345 | |
| 335 | 346 | list ($this->m_nWidth, $this->m_nHeight) = array_values(unpack('v2', substr($lpData, 6, 4))); |
| 336 | 347 | |
| 337 | - if (!$this->m_nWidth || !$this->m_nHeight) |
|
| 338 | - return false; |
|
| 348 | + if (!$this->m_nWidth || !$this->m_nHeight) { |
|
| 349 | + return false; |
|
| 350 | + } |
|
| 339 | 351 | |
| 340 | 352 | $b = ord(substr($lpData, 10, 1)); |
| 341 | 353 | $this->m_bGlobalClr = ($b & 0x80) ? true : false; |
@@ -349,8 +361,9 @@ discard block |
||
| 349 | 361 | if ($this->m_bGlobalClr) |
| 350 | 362 | { |
| 351 | 363 | $this->m_colorTable = new gif_color_table(); |
| 352 | - if (!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) |
|
| 353 | - return false; |
|
| 364 | + if (!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) { |
|
| 365 | + return false; |
|
| 366 | + } |
|
| 354 | 367 | |
| 355 | 368 | $hdrLen += 3 * $this->m_nTableSize; |
| 356 | 369 | } |
@@ -377,8 +390,9 @@ discard block |
||
| 377 | 390 | // Get the width/height/etc. from the header. |
| 378 | 391 | list ($this->m_nLeft, $this->m_nTop, $this->m_nWidth, $this->m_nHeight) = array_values(unpack('v4', substr($lpData, 0, 8))); |
| 379 | 392 | |
| 380 | - if (!$this->m_nWidth || !$this->m_nHeight) |
|
| 381 | - return false; |
|
| 393 | + if (!$this->m_nWidth || !$this->m_nHeight) { |
|
| 394 | + return false; |
|
| 395 | + } |
|
| 382 | 396 | |
| 383 | 397 | $b = ord($lpData[8]); |
| 384 | 398 | $this->m_bLocalClr = ($b & 0x80) ? true : false; |
@@ -390,8 +404,9 @@ discard block |
||
| 390 | 404 | if ($this->m_bLocalClr) |
| 391 | 405 | { |
| 392 | 406 | $this->m_colorTable = new gif_color_table(); |
| 393 | - if (!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) |
|
| 394 | - return false; |
|
| 407 | + if (!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) { |
|
| 408 | + return false; |
|
| 409 | + } |
|
| 395 | 410 | |
| 396 | 411 | $hdrLen += 3 * $this->m_nTableSize; |
| 397 | 412 | } |
@@ -427,8 +442,9 @@ discard block |
||
| 427 | 442 | // Extension... |
| 428 | 443 | case 0x21: |
| 429 | 444 | $len = 0; |
| 430 | - if (!$this->skipExt($data, $len)) |
|
| 431 | - return false; |
|
| 445 | + if (!$this->skipExt($data, $len)) { |
|
| 446 | + return false; |
|
| 447 | + } |
|
| 432 | 448 | |
| 433 | 449 | $datLen += $len; |
| 434 | 450 | break; |
@@ -437,21 +453,24 @@ discard block |
||
| 437 | 453 | case 0x2C: |
| 438 | 454 | // Load the header and color table. |
| 439 | 455 | $len = 0; |
| 440 | - if (!$this->m_gih->load($data, $len)) |
|
| 441 | - return false; |
|
| 456 | + if (!$this->m_gih->load($data, $len)) { |
|
| 457 | + return false; |
|
| 458 | + } |
|
| 442 | 459 | |
| 443 | 460 | $data = substr($data, $len); |
| 444 | 461 | $datLen += $len; |
| 445 | 462 | |
| 446 | 463 | // Decompress the data, and ride on home ;). |
| 447 | 464 | $len = 0; |
| 448 | - if (!($this->m_data = $this->m_lzw->decompress($data, $len))) |
|
| 449 | - return false; |
|
| 465 | + if (!($this->m_data = $this->m_lzw->decompress($data, $len))) { |
|
| 466 | + return false; |
|
| 467 | + } |
|
| 450 | 468 | |
| 451 | 469 | $datLen += $len; |
| 452 | 470 | |
| 453 | - if ($this->m_gih->m_bInterlace) |
|
| 454 | - $this->deInterlace(); |
|
| 471 | + if ($this->m_gih->m_bInterlace) { |
|
| 472 | + $this->deInterlace(); |
|
| 473 | + } |
|
| 455 | 474 | |
| 456 | 475 | return true; |
| 457 | 476 | |
@@ -571,17 +590,20 @@ discard block |
||
| 571 | 590 | |
| 572 | 591 | public function loadFile($filename, $iIndex) |
| 573 | 592 | { |
| 574 | - if ($iIndex < 0) |
|
| 575 | - return false; |
|
| 593 | + if ($iIndex < 0) { |
|
| 594 | + return false; |
|
| 595 | + } |
|
| 576 | 596 | |
| 577 | 597 | $this->data = @file_get_contents($filename); |
| 578 | - if ($this->data === false) |
|
| 579 | - return false; |
|
| 598 | + if ($this->data === false) { |
|
| 599 | + return false; |
|
| 600 | + } |
|
| 580 | 601 | |
| 581 | 602 | // Tell the header to load up.... |
| 582 | 603 | $len = 0; |
| 583 | - if (!$this->header->load($this->data, $len)) |
|
| 584 | - return false; |
|
| 604 | + if (!$this->header->load($this->data, $len)) { |
|
| 605 | + return false; |
|
| 606 | + } |
|
| 585 | 607 | |
| 586 | 608 | $this->data = substr($this->data, $len); |
| 587 | 609 | |
@@ -589,8 +611,9 @@ discard block |
||
| 589 | 611 | for ($j = 0; $j <= $iIndex; $j++) |
| 590 | 612 | { |
| 591 | 613 | $imgLen = 0; |
| 592 | - if (!$this->image->load($this->data, $imgLen)) |
|
| 593 | - return false; |
|
| 614 | + if (!$this->image->load($this->data, $imgLen)) { |
|
| 615 | + return false; |
|
| 616 | + } |
|
| 594 | 617 | |
| 595 | 618 | $this->data = substr($this->data, $imgLen); |
| 596 | 619 | } |
@@ -601,8 +624,9 @@ discard block |
||
| 601 | 624 | |
| 602 | 625 | public function get_png_data($background_color) |
| 603 | 626 | { |
| 604 | - if (!$this->loaded) |
|
| 605 | - return false; |
|
| 627 | + if (!$this->loaded) { |
|
| 628 | + return false; |
|
| 629 | + } |
|
| 606 | 630 | |
| 607 | 631 | // Prepare the color table. |
| 608 | 632 | if ($this->image->m_gih->m_bLocalClr) |
@@ -610,25 +634,26 @@ discard block |
||
| 610 | 634 | $colors = $this->image->m_gih->m_nTableSize; |
| 611 | 635 | $pal = $this->image->m_gih->m_colorTable->toString(); |
| 612 | 636 | |
| 613 | - if ($background_color != -1) |
|
| 614 | - $background_color = $this->image->m_gih->m_colorTable->colorIndex($background_color); |
|
| 615 | - } |
|
| 616 | - elseif ($this->header->m_bGlobalClr) |
|
| 637 | + if ($background_color != -1) { |
|
| 638 | + $background_color = $this->image->m_gih->m_colorTable->colorIndex($background_color); |
|
| 639 | + } |
|
| 640 | + } elseif ($this->header->m_bGlobalClr) |
|
| 617 | 641 | { |
| 618 | 642 | $colors = $this->header->m_nTableSize; |
| 619 | 643 | $pal = $this->header->m_colorTable->toString(); |
| 620 | 644 | |
| 621 | - if ($background_color != -1) |
|
| 622 | - $background_color = $this->header->m_colorTable->colorIndex($background_color); |
|
| 623 | - } |
|
| 624 | - else |
|
| 645 | + if ($background_color != -1) { |
|
| 646 | + $background_color = $this->header->m_colorTable->colorIndex($background_color); |
|
| 647 | + } |
|
| 648 | + } else |
|
| 625 | 649 | { |
| 626 | 650 | $colors = 0; |
| 627 | 651 | $background_color = -1; |
| 628 | 652 | } |
| 629 | 653 | |
| 630 | - if ($background_color == -1) |
|
| 631 | - $background_color = $this->header->m_nBgColor; |
|
| 654 | + if ($background_color == -1) { |
|
| 655 | + $background_color = $this->header->m_nBgColor; |
|
| 656 | + } |
|
| 632 | 657 | |
| 633 | 658 | $data = &$this->image->m_data; |
| 634 | 659 | $header = &$this->image->m_gih; |
@@ -644,11 +669,13 @@ discard block |
||
| 644 | 669 | for ($x = 0; $x < $this->header->m_nWidth; $x++, $i++) |
| 645 | 670 | { |
| 646 | 671 | // Is this in the proper range? If so, get the specific pixel data... |
| 647 | - if ($x >= $header->m_nLeft && $y >= $header->m_nTop && $x < ($header->m_nLeft + $header->m_nWidth) && $y < ($header->m_nTop + $header->m_nHeight)) |
|
| 648 | - $bmp .= $data{$i}; |
|
| 672 | + if ($x >= $header->m_nLeft && $y >= $header->m_nTop && $x < ($header->m_nLeft + $header->m_nWidth) && $y < ($header->m_nTop + $header->m_nHeight)) { |
|
| 673 | + $bmp .= $data{$i}; |
|
| 674 | + } |
|
| 649 | 675 | // Otherwise, this is background... |
| 650 | - else |
|
| 651 | - $bmp .= chr($background_color); |
|
| 676 | + else { |
|
| 677 | + $bmp .= chr($background_color); |
|
| 678 | + } |
|
| 652 | 679 | } |
| 653 | 680 | } |
| 654 | 681 | |
@@ -677,8 +704,9 @@ discard block |
||
| 677 | 704 | $tmp = 'tRNS'; |
| 678 | 705 | |
| 679 | 706 | // Stick each color on - full transparency or none. |
| 680 | - for ($i = 0; $i < $colors; $i++) |
|
| 681 | - $tmp .= $i == $this->image->m_nTrans ? "\x00" : "\xFF"; |
|
| 707 | + for ($i = 0; $i < $colors; $i++) { |
|
| 708 | + $tmp .= $i == $this->image->m_nTrans ? "\x00" : "\xFF"; |
|
| 709 | + } |
|
| 682 | 710 | |
| 683 | 711 | $out .= $tmp . pack('N', smf_crc32($tmp)); |
| 684 | 712 | } |
@@ -11,8 +11,9 @@ discard block |
||
| 11 | 11 | * @version 2.1 Beta 4 |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -if (!defined('SMF')) |
|
| 14 | +if (!defined('SMF')) { |
|
| 15 | 15 | die('Hacking attempt...'); |
| 16 | +} |
|
| 16 | 17 | |
| 17 | 18 | /** |
| 18 | 19 | * Our Cache API class |
@@ -34,8 +35,9 @@ discard block |
||
| 34 | 35 | |
| 35 | 36 | $supported = class_exists('memcache'); |
| 36 | 37 | |
| 37 | - if ($test) |
|
| 38 | - return $supported; |
|
| 38 | + if ($test) { |
|
| 39 | + return $supported; |
|
| 40 | + } |
|
| 39 | 41 | return parent::isSupported() && $supported && !empty($cache_memcached); |
| 40 | 42 | } |
| 41 | 43 | |
@@ -61,9 +63,9 @@ discard block |
||
| 61 | 63 | $server = trim($servers[array_rand($servers)]); |
| 62 | 64 | |
| 63 | 65 | // 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) |
|
| 65 | - $host = $server; |
|
| 66 | - else |
|
| 66 | + if (strpos($server,'/') !== false) { |
|
| 67 | + $host = $server; |
|
| 68 | + } else |
|
| 67 | 69 | { |
| 68 | 70 | $server = explode(':', $server); |
| 69 | 71 | $host = $server[0]; |
@@ -71,10 +73,11 @@ discard block |
||
| 71 | 73 | } |
| 72 | 74 | |
| 73 | 75 | // Don't wait too long: yes, we want the server, but we might be able to run the query faster! |
| 74 | - if (empty($db_persist)) |
|
| 75 | - $connected = $this->memcache->connect($host, $port); |
|
| 76 | - else |
|
| 77 | - $connected = $this->memcache->pconnect($host, $port); |
|
| 76 | + if (empty($db_persist)) { |
|
| 77 | + $connected = $this->memcache->connect($host, $port); |
|
| 78 | + } else { |
|
| 79 | + $connected = $this->memcache->pconnect($host, $port); |
|
| 80 | + } |
|
| 78 | 81 | } |
| 79 | 82 | |
| 80 | 83 | return $connected; |
@@ -90,8 +93,9 @@ discard block |
||
| 90 | 93 | $value = $this->memcache->get($key); |
| 91 | 94 | |
| 92 | 95 | // $value should return either data or false (from failure, key not found or empty array). |
| 93 | - if ($value === false) |
|
| 94 | - return null; |
|
| 96 | + if ($value === false) { |
|
| 97 | + return null; |
|
| 98 | + } |
|
| 95 | 99 | return $value; |
| 96 | 100 | } |
| 97 | 101 | |
@@ -132,8 +136,9 @@ discard block |
||
| 132 | 136 | $config_vars[] = $txt['cache_memcache_settings']; |
| 133 | 137 | $config_vars[] = array('cache_memcached', $txt['cache_memcache_servers'], 'file', 'text', 0, 'cache_memcached', 'postinput' => '<br /><div class="smalltext"><em>' . $txt['cache_memcache_servers_subtext'] . '</em></div>'); |
| 134 | 138 | |
| 135 | - if (!isset($context['settings_post_javascript'])) |
|
| 136 | - $context['settings_post_javascript'] = ''; |
|
| 139 | + if (!isset($context['settings_post_javascript'])) { |
|
| 140 | + $context['settings_post_javascript'] = ''; |
|
| 141 | + } |
|
| 137 | 142 | |
| 138 | 143 | $context['settings_post_javascript'] .= ' |
| 139 | 144 | $("#cache_accelerator").change(function (e) { |
@@ -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 | * The main handler and designator for AJAX stuff - jumpto, message icons and previews |
@@ -32,8 +33,9 @@ discard block |
||
| 32 | 33 | // Easy adding of sub actions. |
| 33 | 34 | call_integration_hook('integrate_XMLhttpMain_subActions', array(&$subActions)); |
| 34 | 35 | |
| 35 | - if (!isset($_REQUEST['sa'], $subActions[$_REQUEST['sa']])) |
|
| 36 | - fatal_lang_error('no_access', false); |
|
| 36 | + if (!isset($_REQUEST['sa'], $subActions[$_REQUEST['sa']])) { |
|
| 37 | + fatal_lang_error('no_access', false); |
|
| 38 | + } |
|
| 37 | 39 | |
| 38 | 40 | call_helper($subActions[$_REQUEST['sa']]); |
| 39 | 41 | } |
@@ -57,8 +59,9 @@ discard block |
||
| 57 | 59 | foreach ($context['jump_to'] as $id_cat => $cat) |
| 58 | 60 | { |
| 59 | 61 | $context['jump_to'][$id_cat]['name'] = un_htmlspecialchars(strip_tags($cat['name'])); |
| 60 | - foreach ($cat['boards'] as $id_board => $board) |
|
| 61 | - $context['jump_to'][$id_cat]['boards'][$id_board]['name'] = un_htmlspecialchars(strip_tags($board['name'])); |
|
| 62 | + foreach ($cat['boards'] as $id_board => $board) { |
|
| 63 | + $context['jump_to'][$id_cat]['boards'][$id_board]['name'] = un_htmlspecialchars(strip_tags($board['name'])); |
|
| 64 | + } |
|
| 62 | 65 | } |
| 63 | 66 | |
| 64 | 67 | $context['sub_template'] = 'jump_to'; |
@@ -95,8 +98,9 @@ discard block |
||
| 95 | 98 | |
| 96 | 99 | $context['sub_template'] = 'generic_xml'; |
| 97 | 100 | |
| 98 | - if (!isset($_POST['item']) || !in_array($_POST['item'], $items)) |
|
| 99 | - return false; |
|
| 101 | + if (!isset($_POST['item']) || !in_array($_POST['item'], $items)) { |
|
| 102 | + return false; |
|
| 103 | + } |
|
| 100 | 104 | |
| 101 | 105 | $_POST['item'](); |
| 102 | 106 | } |
@@ -112,10 +116,11 @@ discard block |
||
| 112 | 116 | |
| 113 | 117 | $errors = array(); |
| 114 | 118 | $news = !isset($_POST['news']) ? '' : $smcFunc['htmlspecialchars']($_POST['news'], ENT_QUOTES); |
| 115 | - if (empty($news)) |
|
| 116 | - $errors[] = array('value' => 'no_news'); |
|
| 117 | - else |
|
| 118 | - preparsecode($news); |
|
| 119 | + if (empty($news)) { |
|
| 120 | + $errors[] = array('value' => 'no_news'); |
|
| 121 | + } else { |
|
| 122 | + preparsecode($news); |
|
| 123 | + } |
|
| 119 | 124 | |
| 120 | 125 | $context['xml_data'] = array( |
| 121 | 126 | 'news' => array( |
@@ -148,10 +153,12 @@ discard block |
||
| 148 | 153 | $context['send_pm'] = !empty($_POST['send_pm']) ? 1 : 0; |
| 149 | 154 | $context['send_html'] = !empty($_POST['send_html']) ? 1 : 0; |
| 150 | 155 | |
| 151 | - if (empty($_POST['subject'])) |
|
| 152 | - $context['post_error']['messages'][] = $txt['error_no_subject']; |
|
| 153 | - if (empty($_POST['message'])) |
|
| 154 | - $context['post_error']['messages'][] = $txt['error_no_message']; |
|
| 156 | + if (empty($_POST['subject'])) { |
|
| 157 | + $context['post_error']['messages'][] = $txt['error_no_subject']; |
|
| 158 | + } |
|
| 159 | + if (empty($_POST['message'])) { |
|
| 160 | + $context['post_error']['messages'][] = $txt['error_no_message']; |
|
| 161 | + } |
|
| 155 | 162 | |
| 156 | 163 | prepareMailingForPreview(); |
| 157 | 164 | |
@@ -196,38 +203,41 @@ discard block |
||
| 196 | 203 | $preview_signature = !empty($_POST['signature']) ? $_POST['signature'] : $txt['no_signature_preview']; |
| 197 | 204 | $validation = profileValidateSignature($preview_signature); |
| 198 | 205 | |
| 199 | - if ($validation !== true && $validation !== false) |
|
| 200 | - $errors[] = array('value' => $txt['profile_error_' . $validation], 'attributes' => array('type' => 'error')); |
|
| 206 | + if ($validation !== true && $validation !== false) { |
|
| 207 | + $errors[] = array('value' => $txt['profile_error_' . $validation], 'attributes' => array('type' => 'error')); |
|
| 208 | + } |
|
| 201 | 209 | |
| 202 | 210 | censorText($preview_signature); |
| 203 | 211 | $preview_signature = parse_bbc($preview_signature, true, 'sig' . $user); |
| 204 | - } |
|
| 205 | - elseif (!$can_change) |
|
| 212 | + } elseif (!$can_change) |
|
| 206 | 213 | { |
| 207 | - if ($is_owner) |
|
| 208 | - $errors[] = array('value' => $txt['cannot_profile_extra_own'], 'attributes' => array('type' => 'error')); |
|
| 209 | - else |
|
| 210 | - $errors[] = array('value' => $txt['cannot_profile_extra_any'], 'attributes' => array('type' => 'error')); |
|
| 214 | + if ($is_owner) { |
|
| 215 | + $errors[] = array('value' => $txt['cannot_profile_extra_own'], 'attributes' => array('type' => 'error')); |
|
| 216 | + } else { |
|
| 217 | + $errors[] = array('value' => $txt['cannot_profile_extra_any'], 'attributes' => array('type' => 'error')); |
|
| 218 | + } |
|
| 219 | + } else { |
|
| 220 | + $errors[] = array('value' => $txt['no_user_selected'], 'attributes' => array('type' => 'error')); |
|
| 211 | 221 | } |
| 212 | - else |
|
| 213 | - $errors[] = array('value' => $txt['no_user_selected'], 'attributes' => array('type' => 'error')); |
|
| 214 | 222 | |
| 215 | 223 | $context['xml_data']['signatures'] = array( |
| 216 | 224 | 'identifier' => 'signature', |
| 217 | 225 | 'children' => array() |
| 218 | 226 | ); |
| 219 | - if (isset($current_signature)) |
|
| 220 | - $context['xml_data']['signatures']['children'][] = array( |
|
| 227 | + if (isset($current_signature)) { |
|
| 228 | + $context['xml_data']['signatures']['children'][] = array( |
|
| 221 | 229 | 'value' => $current_signature, |
| 222 | 230 | 'attributes' => array('type' => 'current'), |
| 223 | 231 | ); |
| 224 | - if (isset($preview_signature)) |
|
| 225 | - $context['xml_data']['signatures']['children'][] = array( |
|
| 232 | + } |
|
| 233 | + if (isset($preview_signature)) { |
|
| 234 | + $context['xml_data']['signatures']['children'][] = array( |
|
| 226 | 235 | 'value' => $preview_signature, |
| 227 | 236 | 'attributes' => array('type' => 'preview'), |
| 228 | 237 | ); |
| 229 | - if (!empty($errors)) |
|
| 230 | - $context['xml_data']['errors'] = array( |
|
| 238 | + } |
|
| 239 | + if (!empty($errors)) { |
|
| 240 | + $context['xml_data']['errors'] = array( |
|
| 231 | 241 | 'identifier' => 'error', |
| 232 | 242 | 'children' => array_merge( |
| 233 | 243 | array( |
@@ -239,7 +249,8 @@ discard block |
||
| 239 | 249 | $errors |
| 240 | 250 | ), |
| 241 | 251 | ); |
| 242 | -} |
|
| 252 | + } |
|
| 253 | + } |
|
| 243 | 254 | |
| 244 | 255 | /** |
| 245 | 256 | * Handles previewing user warnings |
@@ -259,15 +270,17 @@ discard block |
||
| 259 | 270 | $context['preview_subject'] = !empty($_POST['title']) ? trim($smcFunc['htmlspecialchars']($_POST['title'])) : ''; |
| 260 | 271 | if (isset($_POST['issuing'])) |
| 261 | 272 | { |
| 262 | - if (empty($_POST['title']) || empty($_POST['body'])) |
|
| 263 | - $context['post_error']['messages'][] = $txt['warning_notify_blank']; |
|
| 264 | - } |
|
| 265 | - else |
|
| 273 | + if (empty($_POST['title']) || empty($_POST['body'])) { |
|
| 274 | + $context['post_error']['messages'][] = $txt['warning_notify_blank']; |
|
| 275 | + } |
|
| 276 | + } else |
|
| 266 | 277 | { |
| 267 | - if (empty($_POST['title'])) |
|
| 268 | - $context['post_error']['messages'][] = $txt['mc_warning_template_error_no_title']; |
|
| 269 | - if (empty($_POST['body'])) |
|
| 270 | - $context['post_error']['messages'][] = $txt['mc_warning_template_error_no_body']; |
|
| 278 | + if (empty($_POST['title'])) { |
|
| 279 | + $context['post_error']['messages'][] = $txt['mc_warning_template_error_no_title']; |
|
| 280 | + } |
|
| 281 | + if (empty($_POST['body'])) { |
|
| 282 | + $context['post_error']['messages'][] = $txt['mc_warning_template_error_no_body']; |
|
| 283 | + } |
|
| 271 | 284 | // Add in few replacements. |
| 272 | 285 | /** |
| 273 | 286 | * These are the defaults: |
@@ -298,9 +311,9 @@ discard block |
||
| 298 | 311 | $warning_body = parse_bbc($warning_body, true); |
| 299 | 312 | } |
| 300 | 313 | $context['preview_message'] = $warning_body; |
| 314 | + } else { |
|
| 315 | + $context['post_error']['messages'][] = array('value' => $txt['cannot_issue_warning'], 'attributes' => array('type' => 'error')); |
|
| 301 | 316 | } |
| 302 | - else |
|
| 303 | - $context['post_error']['messages'][] = array('value' => $txt['cannot_issue_warning'], 'attributes' => array('type' => 'error')); |
|
| 304 | 317 | |
| 305 | 318 | $context['sub_template'] = 'warning'; |
| 306 | 319 | } |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * The central part of the board - topic display. |
@@ -34,8 +35,9 @@ discard block |
||
| 34 | 35 | global $messages_request, $language, $smcFunc; |
| 35 | 36 | |
| 36 | 37 | // What are you gonna display if these are empty?! |
| 37 | - if (empty($topic)) |
|
| 38 | - fatal_lang_error('no_board', false); |
|
| 38 | + if (empty($topic)) { |
|
| 39 | + fatal_lang_error('no_board', false); |
|
| 40 | + } |
|
| 39 | 41 | |
| 40 | 42 | // Load the proper template. |
| 41 | 43 | loadTemplate('Display'); |
@@ -52,15 +54,17 @@ discard block |
||
| 52 | 54 | $context['messages_per_page'] = empty($modSettings['disableCustomPerPage']) && !empty($options['messages_per_page']) ? $options['messages_per_page'] : $modSettings['defaultMaxMessages']; |
| 53 | 55 | |
| 54 | 56 | // Let's do some work on what to search index. |
| 55 | - if (count($_GET) > 2) |
|
| 56 | - foreach ($_GET as $k => $v) |
|
| 57 | + if (count($_GET) > 2) { |
|
| 58 | + foreach ($_GET as $k => $v) |
|
| 57 | 59 | { |
| 58 | 60 | if (!in_array($k, array('topic', 'board', 'start', session_name()))) |
| 59 | 61 | $context['robot_no_index'] = true; |
| 62 | + } |
|
| 60 | 63 | } |
| 61 | 64 | |
| 62 | - if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) |
|
| 63 | - $context['robot_no_index'] = true; |
|
| 65 | + if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) { |
|
| 66 | + $context['robot_no_index'] = true; |
|
| 67 | + } |
|
| 64 | 68 | |
| 65 | 69 | // Find the previous or next topic. Make a fuss if there are no more. |
| 66 | 70 | if (isset($_REQUEST['prev_next']) && ($_REQUEST['prev_next'] == 'prev' || $_REQUEST['prev_next'] == 'next')) |
@@ -172,8 +176,9 @@ discard block |
||
| 172 | 176 | $topic_parameters |
| 173 | 177 | ); |
| 174 | 178 | |
| 175 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 176 | - fatal_lang_error('not_a_topic', false, 404); |
|
| 179 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 180 | + fatal_lang_error('not_a_topic', false, 404); |
|
| 181 | + } |
|
| 177 | 182 | $context['topicinfo'] = $smcFunc['db_fetch_assoc']($request); |
| 178 | 183 | $smcFunc['db_free_result']($request); |
| 179 | 184 | |
@@ -210,8 +215,9 @@ discard block |
||
| 210 | 215 | $context['topic_unwatched'] = isset($context['topicinfo']['unwatched']) ? $context['topicinfo']['unwatched'] : 0; |
| 211 | 216 | |
| 212 | 217 | // Add up unapproved replies to get real number of replies... |
| 213 | - if ($modSettings['postmod_active'] && $approve_posts) |
|
| 214 | - $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
| 218 | + if ($modSettings['postmod_active'] && $approve_posts) { |
|
| 219 | + $context['real_num_replies'] += $context['topicinfo']['unapproved_posts'] - ($context['topicinfo']['approved'] ? 0 : 1); |
|
| 220 | + } |
|
| 215 | 221 | |
| 216 | 222 | // If this topic has unapproved posts, we need to work out how many posts the user can see, for page indexing. |
| 217 | 223 | if ($modSettings['postmod_active'] && $context['topicinfo']['unapproved_posts'] && !$user_info['is_guest'] && !$approve_posts) |
@@ -231,11 +237,11 @@ discard block |
||
| 231 | 237 | $smcFunc['db_free_result']($request); |
| 232 | 238 | |
| 233 | 239 | $context['total_visible_posts'] = $context['num_replies'] + $myUnapprovedPosts + ($context['topicinfo']['approved'] ? 1 : 0); |
| 240 | + } elseif ($user_info['is_guest']) { |
|
| 241 | + $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
| 242 | + } else { |
|
| 243 | + $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
| 234 | 244 | } |
| 235 | - elseif ($user_info['is_guest']) |
|
| 236 | - $context['total_visible_posts'] = $context['num_replies'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
| 237 | - else |
|
| 238 | - $context['total_visible_posts'] = $context['num_replies'] + $context['topicinfo']['unapproved_posts'] + ($context['topicinfo']['approved'] ? 1 : 0); |
|
| 239 | 245 | |
| 240 | 246 | // The start isn't a number; it's information about what to do, where to go. |
| 241 | 247 | if (!is_numeric($_REQUEST['start'])) |
@@ -248,8 +254,7 @@ discard block |
||
| 248 | 254 | { |
| 249 | 255 | $context['start_from'] = $context['total_visible_posts'] - 1; |
| 250 | 256 | $_REQUEST['start'] = empty($options['view_newest_first']) ? $context['start_from'] : 0; |
| 251 | - } |
|
| 252 | - else |
|
| 257 | + } else |
|
| 253 | 258 | { |
| 254 | 259 | // Find the earliest unread message in the topic. (the use of topics here is just for both tables.) |
| 255 | 260 | $request = $smcFunc['db_query']('', ' |
@@ -277,9 +282,9 @@ discard block |
||
| 277 | 282 | if (substr($_REQUEST['start'], 0, 4) == 'from') |
| 278 | 283 | { |
| 279 | 284 | $timestamp = (int) substr($_REQUEST['start'], 4); |
| 280 | - if ($timestamp === 0) |
|
| 281 | - $_REQUEST['start'] = 0; |
|
| 282 | - else |
|
| 285 | + if ($timestamp === 0) { |
|
| 286 | + $_REQUEST['start'] = 0; |
|
| 287 | + } else |
|
| 283 | 288 | { |
| 284 | 289 | // Find the number of messages posted before said time... |
| 285 | 290 | $request = $smcFunc['db_query']('', ' |
@@ -307,11 +312,11 @@ discard block |
||
| 307 | 312 | elseif (substr($_REQUEST['start'], 0, 3) == 'msg') |
| 308 | 313 | { |
| 309 | 314 | $virtual_msg = (int) substr($_REQUEST['start'], 3); |
| 310 | - if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) |
|
| 311 | - $context['start_from'] = $context['total_visible_posts'] - 1; |
|
| 312 | - elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) |
|
| 313 | - $context['start_from'] = 0; |
|
| 314 | - else |
|
| 315 | + if (!$context['topicinfo']['unapproved_posts'] && $virtual_msg >= $context['topicinfo']['id_last_msg']) { |
|
| 316 | + $context['start_from'] = $context['total_visible_posts'] - 1; |
|
| 317 | + } elseif (!$context['topicinfo']['unapproved_posts'] && $virtual_msg <= $context['topicinfo']['id_first_msg']) { |
|
| 318 | + $context['start_from'] = 0; |
|
| 319 | + } else |
|
| 315 | 320 | { |
| 316 | 321 | // Find the start value for that message...... |
| 317 | 322 | $request = $smcFunc['db_query']('', ' |
@@ -394,21 +399,25 @@ discard block |
||
| 394 | 399 | ); |
| 395 | 400 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 396 | 401 | { |
| 397 | - if (empty($row['id_member'])) |
|
| 398 | - continue; |
|
| 402 | + if (empty($row['id_member'])) { |
|
| 403 | + continue; |
|
| 404 | + } |
|
| 399 | 405 | |
| 400 | - if (!empty($row['online_color'])) |
|
| 401 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 402 | - else |
|
| 403 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 406 | + if (!empty($row['online_color'])) { |
|
| 407 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 408 | + } else { |
|
| 409 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 410 | + } |
|
| 404 | 411 | |
| 405 | 412 | $is_buddy = in_array($row['id_member'], $user_info['buddies']); |
| 406 | - if ($is_buddy) |
|
| 407 | - $link = '<strong>' . $link . '</strong>'; |
|
| 413 | + if ($is_buddy) { |
|
| 414 | + $link = '<strong>' . $link . '</strong>'; |
|
| 415 | + } |
|
| 408 | 416 | |
| 409 | 417 | // Add them both to the list and to the more detailed list. |
| 410 | - if (!empty($row['show_online']) || allowedTo('moderate_forum')) |
|
| 411 | - $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 418 | + if (!empty($row['show_online']) || allowedTo('moderate_forum')) { |
|
| 419 | + $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 420 | + } |
|
| 412 | 421 | $context['view_members'][$row['log_time'] . $row['member_name']] = array( |
| 413 | 422 | 'id' => $row['id_member'], |
| 414 | 423 | 'username' => $row['member_name'], |
@@ -420,8 +429,9 @@ discard block |
||
| 420 | 429 | 'hidden' => empty($row['show_online']), |
| 421 | 430 | ); |
| 422 | 431 | |
| 423 | - if (empty($row['show_online'])) |
|
| 424 | - $context['view_num_hidden']++; |
|
| 432 | + if (empty($row['show_online'])) { |
|
| 433 | + $context['view_num_hidden']++; |
|
| 434 | + } |
|
| 425 | 435 | } |
| 426 | 436 | |
| 427 | 437 | // The number of guests is equal to the rows minus the ones we actually used ;). |
@@ -435,11 +445,13 @@ discard block |
||
| 435 | 445 | |
| 436 | 446 | // If all is set, but not allowed... just unset it. |
| 437 | 447 | $can_show_all = !empty($modSettings['enableAllMessages']) && $context['total_visible_posts'] > $context['messages_per_page'] && $context['total_visible_posts'] < $modSettings['enableAllMessages']; |
| 438 | - if (isset($_REQUEST['all']) && !$can_show_all) |
|
| 439 | - unset($_REQUEST['all']); |
|
| 448 | + if (isset($_REQUEST['all']) && !$can_show_all) { |
|
| 449 | + unset($_REQUEST['all']); |
|
| 450 | + } |
|
| 440 | 451 | // Otherwise, it must be allowed... so pretend start was -1. |
| 441 | - elseif (isset($_REQUEST['all'])) |
|
| 442 | - $_REQUEST['start'] = -1; |
|
| 452 | + elseif (isset($_REQUEST['all'])) { |
|
| 453 | + $_REQUEST['start'] = -1; |
|
| 454 | + } |
|
| 443 | 455 | |
| 444 | 456 | // Construct the page index, allowing for the .START method... |
| 445 | 457 | $context['page_index'] = constructPageIndex($scripturl . '?topic=' . $topic . '.%1$d', $_REQUEST['start'], $context['total_visible_posts'], $context['messages_per_page'], true); |
@@ -476,8 +488,9 @@ discard block |
||
| 476 | 488 | $_REQUEST['start'] = 0; |
| 477 | 489 | } |
| 478 | 490 | // They aren't using it, but the *option* is there, at least. |
| 479 | - else |
|
| 480 | - $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
| 491 | + else { |
|
| 492 | + $context['page_index'] .= ' <a href="' . $scripturl . '?topic=' . $topic . '.0;all">' . $txt['all'] . '</a> '; |
|
| 493 | + } |
|
| 481 | 494 | } |
| 482 | 495 | |
| 483 | 496 | // Build the link tree. |
@@ -493,14 +506,16 @@ discard block |
||
| 493 | 506 | if (!empty($board_info['moderators'])) |
| 494 | 507 | { |
| 495 | 508 | // Add a link for each moderator... |
| 496 | - foreach ($board_info['moderators'] as $mod) |
|
| 497 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 509 | + foreach ($board_info['moderators'] as $mod) { |
|
| 510 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 511 | + } |
|
| 498 | 512 | } |
| 499 | 513 | if (!empty($board_info['moderator_groups'])) |
| 500 | 514 | { |
| 501 | 515 | // Add a link for each moderator group as well... |
| 502 | - foreach ($board_info['moderator_groups'] as $mod_group) |
|
| 503 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 516 | + foreach ($board_info['moderator_groups'] as $mod_group) { |
|
| 517 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=viewmemberes;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 518 | + } |
|
| 504 | 519 | } |
| 505 | 520 | |
| 506 | 521 | if (!empty($context['link_moderators'])) |
@@ -531,9 +546,9 @@ discard block |
||
| 531 | 546 | // For quick reply we need a response prefix in the default forum language. |
| 532 | 547 | if (!isset($context['response_prefix']) && !($context['response_prefix'] = cache_get_data('response_prefix', 600))) |
| 533 | 548 | { |
| 534 | - if ($language === $user_info['language']) |
|
| 535 | - $context['response_prefix'] = $txt['response_prefix']; |
|
| 536 | - else |
|
| 549 | + if ($language === $user_info['language']) { |
|
| 550 | + $context['response_prefix'] = $txt['response_prefix']; |
|
| 551 | + } else |
|
| 537 | 552 | { |
| 538 | 553 | loadLanguage('index', $language, false); |
| 539 | 554 | $context['response_prefix'] = $txt['response_prefix']; |
@@ -565,8 +580,9 @@ discard block |
||
| 565 | 580 | list($start, $end, $allday, $span, $tz, $tz_abbrev) = buildEventDatetimes($row); |
| 566 | 581 | |
| 567 | 582 | // Sanity check |
| 568 | - if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) |
|
| 569 | - continue; |
|
| 583 | + if (!empty($start['error_count']) || !empty($start['warning_count']) || !empty($end['error_count']) || !empty($end['warning_count'])) { |
|
| 584 | + continue; |
|
| 585 | + } |
|
| 570 | 586 | |
| 571 | 587 | $linked_calendar_event = array( |
| 572 | 588 | 'id' => $row['id_event'], |
@@ -615,8 +631,9 @@ discard block |
||
| 615 | 631 | } |
| 616 | 632 | $smcFunc['db_free_result']($request); |
| 617 | 633 | |
| 618 | - if (!empty($context['linked_calendar_events'])) |
|
| 619 | - $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
| 634 | + if (!empty($context['linked_calendar_events'])) { |
|
| 635 | + $context['linked_calendar_events'][count($context['linked_calendar_events']) - 1]['is_last'] = true; |
|
| 636 | + } |
|
| 620 | 637 | } |
| 621 | 638 | |
| 622 | 639 | // Create the poll info if it exists. |
@@ -679,8 +696,9 @@ discard block |
||
| 679 | 696 | $smcFunc['db_free_result']($request); |
| 680 | 697 | |
| 681 | 698 | // Got we multi choice? |
| 682 | - if ($pollinfo['max_votes'] > 1) |
|
| 683 | - $realtotal = $pollinfo['total']; |
|
| 699 | + if ($pollinfo['max_votes'] > 1) { |
|
| 700 | + $realtotal = $pollinfo['total']; |
|
| 701 | + } |
|
| 684 | 702 | |
| 685 | 703 | // If this is a guest we need to do our best to work out if they have voted, and what they voted for. |
| 686 | 704 | if ($user_info['is_guest'] && $pollinfo['guest_vote'] && allowedTo('poll_vote')) |
@@ -693,20 +711,21 @@ discard block |
||
| 693 | 711 | foreach ($guestinfo as $i => $guestvoted) |
| 694 | 712 | { |
| 695 | 713 | $guestvoted = explode(',', $guestvoted); |
| 696 | - if ($guestvoted[0] == $context['topicinfo']['id_poll']) |
|
| 697 | - break; |
|
| 714 | + if ($guestvoted[0] == $context['topicinfo']['id_poll']) { |
|
| 715 | + break; |
|
| 716 | + } |
|
| 698 | 717 | } |
| 699 | 718 | // Has the poll been reset since guest voted? |
| 700 | 719 | if ($pollinfo['reset_poll'] > $guestvoted[1]) |
| 701 | 720 | { |
| 702 | 721 | // Remove the poll info from the cookie to allow guest to vote again |
| 703 | 722 | unset($guestinfo[$i]); |
| 704 | - if (!empty($guestinfo)) |
|
| 705 | - $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
| 706 | - else |
|
| 707 | - unset($_COOKIE['guest_poll_vote']); |
|
| 708 | - } |
|
| 709 | - else |
|
| 723 | + if (!empty($guestinfo)) { |
|
| 724 | + $_COOKIE['guest_poll_vote'] = ';' . implode(';', $guestinfo); |
|
| 725 | + } else { |
|
| 726 | + unset($_COOKIE['guest_poll_vote']); |
|
| 727 | + } |
|
| 728 | + } else |
|
| 710 | 729 | { |
| 711 | 730 | // What did they vote for? |
| 712 | 731 | unset($guestvoted[0], $guestvoted[1]); |
@@ -820,23 +839,29 @@ discard block |
||
| 820 | 839 | // Build the poll moderation button array. |
| 821 | 840 | $context['poll_buttons'] = array(); |
| 822 | 841 | |
| 823 | - if ($context['allow_return_vote']) |
|
| 824 | - $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 842 | + if ($context['allow_return_vote']) { |
|
| 843 | + $context['poll_buttons']['vote'] = array('text' => 'poll_return_vote', 'image' => 'poll_options.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 844 | + } |
|
| 825 | 845 | |
| 826 | - if ($context['show_view_results_button']) |
|
| 827 | - $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
| 846 | + if ($context['show_view_results_button']) { |
|
| 847 | + $context['poll_buttons']['results'] = array('text' => 'poll_results', 'image' => 'poll_results.png', 'url' => $scripturl . '?topic=' . $context['current_topic'] . '.' . $context['start'] . ';viewresults'); |
|
| 848 | + } |
|
| 828 | 849 | |
| 829 | - if ($context['allow_change_vote']) |
|
| 830 | - $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 850 | + if ($context['allow_change_vote']) { |
|
| 851 | + $context['poll_buttons']['change_vote'] = array('text' => 'poll_change_vote', 'image' => 'poll_change_vote.png', 'url' => $scripturl . '?action=vote;topic=' . $context['current_topic'] . '.' . $context['start'] . ';poll=' . $context['poll']['id'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 852 | + } |
|
| 831 | 853 | |
| 832 | - if ($context['allow_lock_poll']) |
|
| 833 | - $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 854 | + if ($context['allow_lock_poll']) { |
|
| 855 | + $context['poll_buttons']['lock'] = array('text' => (!$context['poll']['is_locked'] ? 'poll_lock' : 'poll_unlock'), 'image' => 'poll_lock.png', 'url' => $scripturl . '?action=lockvoting;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 856 | + } |
|
| 834 | 857 | |
| 835 | - if ($context['allow_edit_poll']) |
|
| 836 | - $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 858 | + if ($context['allow_edit_poll']) { |
|
| 859 | + $context['poll_buttons']['edit'] = array('text' => 'poll_edit', 'image' => 'poll_edit.png', 'url' => $scripturl . '?action=editpoll;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 860 | + } |
|
| 837 | 861 | |
| 838 | - if ($context['can_remove_poll']) |
|
| 839 | - $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 862 | + if ($context['can_remove_poll']) { |
|
| 863 | + $context['poll_buttons']['remove_poll'] = array('text' => 'poll_remove', 'image' => 'admin_remove_poll.png', 'custom' => 'data-confirm="' . $txt['poll_remove_warn'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removepoll;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 864 | + } |
|
| 840 | 865 | |
| 841 | 866 | // Allow mods to add additional buttons here |
| 842 | 867 | call_integration_hook('integrate_poll_buttons'); |
@@ -877,8 +902,9 @@ discard block |
||
| 877 | 902 | $all_posters = array(); |
| 878 | 903 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 879 | 904 | { |
| 880 | - if (!empty($row['id_member'])) |
|
| 881 | - $all_posters[$row['id_msg']] = $row['id_member']; |
|
| 905 | + if (!empty($row['id_member'])) { |
|
| 906 | + $all_posters[$row['id_msg']] = $row['id_member']; |
|
| 907 | + } |
|
| 882 | 908 | $messages[] = $row['id_msg']; |
| 883 | 909 | } |
| 884 | 910 | $smcFunc['db_free_result']($request); |
@@ -890,8 +916,9 @@ discard block |
||
| 890 | 916 | if (!$user_info['is_guest'] && !empty($messages)) |
| 891 | 917 | { |
| 892 | 918 | $mark_at_msg = max($messages); |
| 893 | - if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) |
|
| 894 | - $mark_at_msg = $modSettings['maxMsgID']; |
|
| 919 | + if ($mark_at_msg >= $context['topicinfo']['id_last_msg']) { |
|
| 920 | + $mark_at_msg = $modSettings['maxMsgID']; |
|
| 921 | + } |
|
| 895 | 922 | if ($mark_at_msg >= $context['topicinfo']['new_from']) |
| 896 | 923 | { |
| 897 | 924 | $smcFunc['db_insert']($context['topicinfo']['new_from'] == 0 ? 'ignore' : 'replace', |
@@ -923,8 +950,9 @@ discard block |
||
| 923 | 950 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 924 | 951 | { |
| 925 | 952 | // Find if this topic is marked for notification... |
| 926 | - if (!empty($row['id_topic'])) |
|
| 927 | - $context['is_marked_notify'] = true; |
|
| 953 | + if (!empty($row['id_topic'])) { |
|
| 954 | + $context['is_marked_notify'] = true; |
|
| 955 | + } |
|
| 928 | 956 | |
| 929 | 957 | // Only do this once, but mark the notifications as "not sent yet" for next time. |
| 930 | 958 | if (!empty($row['sent']) && $do_once) |
@@ -946,8 +974,9 @@ discard block |
||
| 946 | 974 | } |
| 947 | 975 | |
| 948 | 976 | // Have we recently cached the number of new topics in this board, and it's still a lot? |
| 949 | - if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) |
|
| 950 | - $_SESSION['topicseen_cache'][$board]--; |
|
| 977 | + if (isset($_REQUEST['topicseen']) && isset($_SESSION['topicseen_cache'][$board]) && $_SESSION['topicseen_cache'][$board] > 5) { |
|
| 978 | + $_SESSION['topicseen_cache'][$board]--; |
|
| 979 | + } |
|
| 951 | 980 | // Mark board as seen if this is the only new topic. |
| 952 | 981 | elseif (isset($_REQUEST['topicseen'])) |
| 953 | 982 | { |
@@ -971,14 +1000,16 @@ discard block |
||
| 971 | 1000 | $smcFunc['db_free_result']($request); |
| 972 | 1001 | |
| 973 | 1002 | // If there're no real new topics in this board, mark the board as seen. |
| 974 | - if (empty($numNewTopics)) |
|
| 975 | - $_REQUEST['boardseen'] = true; |
|
| 976 | - else |
|
| 977 | - $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
| 1003 | + if (empty($numNewTopics)) { |
|
| 1004 | + $_REQUEST['boardseen'] = true; |
|
| 1005 | + } else { |
|
| 1006 | + $_SESSION['topicseen_cache'][$board] = $numNewTopics; |
|
| 1007 | + } |
|
| 978 | 1008 | } |
| 979 | 1009 | // Probably one less topic - maybe not, but even if we decrease this too fast it will only make us look more often. |
| 980 | - elseif (isset($_SESSION['topicseen_cache'][$board])) |
|
| 981 | - $_SESSION['topicseen_cache'][$board]--; |
|
| 1010 | + elseif (isset($_SESSION['topicseen_cache'][$board])) { |
|
| 1011 | + $_SESSION['topicseen_cache'][$board]--; |
|
| 1012 | + } |
|
| 982 | 1013 | |
| 983 | 1014 | // Mark board as seen if we came using last post link from BoardIndex. (or other places...) |
| 984 | 1015 | if (isset($_REQUEST['boardseen'])) |
@@ -1035,23 +1066,26 @@ discard block |
||
| 1035 | 1066 | $temp = array(); |
| 1036 | 1067 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1037 | 1068 | { |
| 1038 | - if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) |
|
| 1039 | - continue; |
|
| 1069 | + if (!$row['approved'] && $modSettings['postmod_active'] && !allowedTo('approve_posts') && (!isset($all_posters[$row['id_msg']]) || $all_posters[$row['id_msg']] != $user_info['id'])) { |
|
| 1070 | + continue; |
|
| 1071 | + } |
|
| 1040 | 1072 | |
| 1041 | 1073 | $temp[$row['id_attach']] = $row; |
| 1042 | 1074 | $temp[$row['id_attach']]['topic'] = $topic; |
| 1043 | 1075 | $temp[$row['id_attach']]['board'] = $board; |
| 1044 | 1076 | |
| 1045 | - if (!isset($context['loaded_attachments'][$row['id_msg']])) |
|
| 1046 | - $context['loaded_attachments'][$row['id_msg']] = array(); |
|
| 1077 | + if (!isset($context['loaded_attachments'][$row['id_msg']])) { |
|
| 1078 | + $context['loaded_attachments'][$row['id_msg']] = array(); |
|
| 1079 | + } |
|
| 1047 | 1080 | } |
| 1048 | 1081 | $smcFunc['db_free_result']($request); |
| 1049 | 1082 | |
| 1050 | 1083 | // This is better than sorting it with the query... |
| 1051 | 1084 | ksort($temp); |
| 1052 | 1085 | |
| 1053 | - foreach ($temp as $row) |
|
| 1054 | - $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
| 1086 | + foreach ($temp as $row) { |
|
| 1087 | + $context['loaded_attachments'][$row['id_msg']][] = $row; |
|
| 1088 | + } |
|
| 1055 | 1089 | } |
| 1056 | 1090 | |
| 1057 | 1091 | $msg_parameters = array( |
@@ -1078,21 +1112,23 @@ discard block |
||
| 1078 | 1112 | ); |
| 1079 | 1113 | |
| 1080 | 1114 | // And the likes |
| 1081 | - if (!empty($modSettings['enable_likes'])) |
|
| 1082 | - $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
| 1115 | + if (!empty($modSettings['enable_likes'])) { |
|
| 1116 | + $context['my_likes'] = $context['user']['is_guest'] ? array() : prepareLikesContext($topic); |
|
| 1117 | + } |
|
| 1083 | 1118 | |
| 1084 | 1119 | // Go to the last message if the given time is beyond the time of the last message. |
| 1085 | - if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) |
|
| 1086 | - $context['start_from'] = $context['topicinfo']['num_replies']; |
|
| 1120 | + if (isset($context['start_from']) && $context['start_from'] >= $context['topicinfo']['num_replies']) { |
|
| 1121 | + $context['start_from'] = $context['topicinfo']['num_replies']; |
|
| 1122 | + } |
|
| 1087 | 1123 | |
| 1088 | 1124 | // Since the anchor information is needed on the top of the page we load these variables beforehand. |
| 1089 | 1125 | $context['first_message'] = isset($messages[$firstIndex]) ? $messages[$firstIndex] : $messages[0]; |
| 1090 | - if (empty($options['view_newest_first'])) |
|
| 1091 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
| 1092 | - else |
|
| 1093 | - $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
| 1094 | - } |
|
| 1095 | - else |
|
| 1126 | + if (empty($options['view_newest_first'])) { |
|
| 1127 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['start_from']; |
|
| 1128 | + } else { |
|
| 1129 | + $context['first_new_message'] = isset($context['start_from']) && $_REQUEST['start'] == $context['topicinfo']['num_replies'] - $context['start_from']; |
|
| 1130 | + } |
|
| 1131 | + } else |
|
| 1096 | 1132 | { |
| 1097 | 1133 | $messages_request = false; |
| 1098 | 1134 | $context['first_message'] = 0; |
@@ -1128,8 +1164,9 @@ discard block |
||
| 1128 | 1164 | 'can_see_likes' => 'likes_view', |
| 1129 | 1165 | 'can_like' => 'likes_like', |
| 1130 | 1166 | ); |
| 1131 | - foreach ($common_permissions as $contextual => $perm) |
|
| 1132 | - $context[$contextual] = allowedTo($perm); |
|
| 1167 | + foreach ($common_permissions as $contextual => $perm) { |
|
| 1168 | + $context[$contextual] = allowedTo($perm); |
|
| 1169 | + } |
|
| 1133 | 1170 | |
| 1134 | 1171 | // Permissions with _any/_own versions. $context[YYY] => ZZZ_any/_own. |
| 1135 | 1172 | $anyown_permissions = array( |
@@ -1142,8 +1179,9 @@ discard block |
||
| 1142 | 1179 | 'can_reply_unapproved' => 'post_unapproved_replies', |
| 1143 | 1180 | 'can_view_warning' => 'profile_warning', |
| 1144 | 1181 | ); |
| 1145 | - foreach ($anyown_permissions as $contextual => $perm) |
|
| 1146 | - $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
| 1182 | + foreach ($anyown_permissions as $contextual => $perm) { |
|
| 1183 | + $context[$contextual] = allowedTo($perm . '_any') || ($context['user']['started'] && allowedTo($perm . '_own')); |
|
| 1184 | + } |
|
| 1147 | 1185 | |
| 1148 | 1186 | if (!$user_info['is_admin'] && !$modSettings['topic_move_any']) |
| 1149 | 1187 | { |
@@ -1189,8 +1227,9 @@ discard block |
||
| 1189 | 1227 | // Check if the draft functions are enabled and that they have permission to use them (for quick reply.) |
| 1190 | 1228 | $context['drafts_save'] = !empty($modSettings['drafts_post_enabled']) && allowedTo('post_draft') && $context['can_reply']; |
| 1191 | 1229 | $context['drafts_autosave'] = !empty($context['drafts_save']) && !empty($modSettings['drafts_autosave_enabled']); |
| 1192 | - if (!empty($context['drafts_save'])) |
|
| 1193 | - loadLanguage('Drafts'); |
|
| 1230 | + if (!empty($context['drafts_save'])) { |
|
| 1231 | + loadLanguage('Drafts'); |
|
| 1232 | + } |
|
| 1194 | 1233 | |
| 1195 | 1234 | // When was the last time this topic was replied to? Should we warn them about it? |
| 1196 | 1235 | if (!empty($modSettings['oldTopicDays']) && ($context['can_reply'] || $context['can_reply_unapproved']) && empty($context['topicinfo']['is_sticky'])) |
@@ -1251,26 +1290,31 @@ discard block |
||
| 1251 | 1290 | // Message icons - customized icons are off? |
| 1252 | 1291 | $context['icons'] = getMessageIcons($board); |
| 1253 | 1292 | |
| 1254 | - if (!empty($context['icons'])) |
|
| 1255 | - $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
| 1293 | + if (!empty($context['icons'])) { |
|
| 1294 | + $context['icons'][count($context['icons']) - 1]['is_last'] = true; |
|
| 1295 | + } |
|
| 1256 | 1296 | |
| 1257 | 1297 | // Build the normal button array. |
| 1258 | 1298 | $context['normal_buttons'] = array(); |
| 1259 | 1299 | |
| 1260 | - if ($context['can_reply']) |
|
| 1261 | - $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
| 1300 | + if ($context['can_reply']) { |
|
| 1301 | + $context['normal_buttons']['reply'] = array('text' => 'reply', 'image' => 'reply.png', 'url' => $scripturl . '?action=post;topic=' . $context['current_topic'] . '.' . $context['start'] . ';last_msg=' . $context['topic_last_message'], 'active' => true); |
|
| 1302 | + } |
|
| 1262 | 1303 | |
| 1263 | - if ($context['can_add_poll']) |
|
| 1264 | - $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 1304 | + if ($context['can_add_poll']) { |
|
| 1305 | + $context['normal_buttons']['add_poll'] = array('text' => 'add_poll', 'image' => 'add_poll.png', 'url' => $scripturl . '?action=editpoll;add;topic=' . $context['current_topic'] . '.' . $context['start']); |
|
| 1306 | + } |
|
| 1265 | 1307 | |
| 1266 | - if ($context['can_mark_unread']) |
|
| 1267 | - $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1308 | + if ($context['can_mark_unread']) { |
|
| 1309 | + $context['normal_buttons']['mark_unread'] = array('text' => 'mark_unread', 'image' => 'markunread.png', 'url' => $scripturl . '?action=markasread;sa=topic;t=' . $context['mark_unread_time'] . ';topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1310 | + } |
|
| 1268 | 1311 | |
| 1269 | - if ($context['can_print']) |
|
| 1270 | - $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
| 1312 | + if ($context['can_print']) { |
|
| 1313 | + $context['normal_buttons']['print'] = array('text' => 'print', 'image' => 'print.png', 'custom' => 'rel="nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'); |
|
| 1314 | + } |
|
| 1271 | 1315 | |
| 1272 | - if ($context['can_set_notify']) |
|
| 1273 | - $context['normal_buttons']['notify'] = array( |
|
| 1316 | + if ($context['can_set_notify']) { |
|
| 1317 | + $context['normal_buttons']['notify'] = array( |
|
| 1274 | 1318 | 'text' => 'notify_topic_' . $context['topic_notification_mode'], |
| 1275 | 1319 | 'sub_buttons' => array( |
| 1276 | 1320 | array( |
@@ -1292,38 +1336,47 @@ discard block |
||
| 1292 | 1336 | ), |
| 1293 | 1337 | ), |
| 1294 | 1338 | ); |
| 1339 | + } |
|
| 1295 | 1340 | |
| 1296 | 1341 | // Build the mod button array |
| 1297 | 1342 | $context['mod_buttons'] = array(); |
| 1298 | 1343 | |
| 1299 | - if ($context['can_move']) |
|
| 1300 | - $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
| 1344 | + if ($context['can_move']) { |
|
| 1345 | + $context['mod_buttons']['move'] = array('text' => 'move_topic', 'image' => 'admin_move.png', 'url' => $scripturl . '?action=movetopic;current_board=' . $context['current_board'] . ';topic=' . $context['current_topic'] . '.0'); |
|
| 1346 | + } |
|
| 1301 | 1347 | |
| 1302 | - if ($context['can_delete']) |
|
| 1303 | - $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1348 | + if ($context['can_delete']) { |
|
| 1349 | + $context['mod_buttons']['delete'] = array('text' => 'remove_topic', 'image' => 'admin_rem.png', 'custom' => 'data-confirm="' . $txt['are_sure_remove_topic'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=removetopic2;topic=' . $context['current_topic'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1350 | + } |
|
| 1304 | 1351 | |
| 1305 | - if ($context['can_lock']) |
|
| 1306 | - $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1352 | + if ($context['can_lock']) { |
|
| 1353 | + $context['mod_buttons']['lock'] = array('text' => empty($context['is_locked']) ? 'set_lock' : 'set_unlock', 'image' => 'admin_lock.png', 'url' => $scripturl . '?action=lock;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1354 | + } |
|
| 1307 | 1355 | |
| 1308 | - if ($context['can_sticky']) |
|
| 1309 | - $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1356 | + if ($context['can_sticky']) { |
|
| 1357 | + $context['mod_buttons']['sticky'] = array('text' => empty($context['is_sticky']) ? 'set_sticky' : 'set_nonsticky', 'image' => 'admin_sticky.png', 'url' => $scripturl . '?action=sticky;topic=' . $context['current_topic'] . '.' . $context['start'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1358 | + } |
|
| 1310 | 1359 | |
| 1311 | - if ($context['can_merge']) |
|
| 1312 | - $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
| 1360 | + if ($context['can_merge']) { |
|
| 1361 | + $context['mod_buttons']['merge'] = array('text' => 'merge', 'image' => 'merge.png', 'url' => $scripturl . '?action=mergetopics;board=' . $context['current_board'] . '.0;from=' . $context['current_topic']); |
|
| 1362 | + } |
|
| 1313 | 1363 | |
| 1314 | - if ($context['calendar_post']) |
|
| 1315 | - $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
| 1364 | + if ($context['calendar_post']) { |
|
| 1365 | + $context['mod_buttons']['calendar'] = array('text' => 'calendar_link', 'image' => 'linktocal.png', 'url' => $scripturl . '?action=post;calendar;msg=' . $context['topic_first_message'] . ';topic=' . $context['current_topic'] . '.0'); |
|
| 1366 | + } |
|
| 1316 | 1367 | |
| 1317 | 1368 | // Restore topic. eh? No monkey business. |
| 1318 | - if ($context['can_restore_topic']) |
|
| 1319 | - $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1369 | + if ($context['can_restore_topic']) { |
|
| 1370 | + $context['mod_buttons']['restore_topic'] = array('text' => 'restore_topic', 'image' => '', 'url' => $scripturl . '?action=restoretopic;topics=' . $context['current_topic'] . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1371 | + } |
|
| 1320 | 1372 | |
| 1321 | 1373 | // Show a message in case a recently posted message became unapproved. |
| 1322 | 1374 | $context['becomesUnapproved'] = !empty($_SESSION['becomesUnapproved']) ? true : false; |
| 1323 | 1375 | |
| 1324 | 1376 | // Don't want to show this forever... |
| 1325 | - if ($context['becomesUnapproved']) |
|
| 1326 | - unset($_SESSION['becomesUnapproved']); |
|
| 1377 | + if ($context['becomesUnapproved']) { |
|
| 1378 | + unset($_SESSION['becomesUnapproved']); |
|
| 1379 | + } |
|
| 1327 | 1380 | |
| 1328 | 1381 | // Allow adding new mod buttons easily. |
| 1329 | 1382 | // Note: $context['normal_buttons'] and $context['mod_buttons'] are added for backward compatibility with 2.0, but are deprecated and should not be used |
@@ -1332,12 +1385,14 @@ discard block |
||
| 1332 | 1385 | call_integration_hook('integrate_mod_buttons', array(&$context['mod_buttons'])); |
| 1333 | 1386 | |
| 1334 | 1387 | // Load the drafts js file |
| 1335 | - if ($context['drafts_autosave']) |
|
| 1336 | - loadJavaScriptFile('drafts.js', array('defer' => false), 'smf_drafts'); |
|
| 1388 | + if ($context['drafts_autosave']) { |
|
| 1389 | + loadJavaScriptFile('drafts.js', array('defer' => false), 'smf_drafts'); |
|
| 1390 | + } |
|
| 1337 | 1391 | |
| 1338 | 1392 | // Spellcheck |
| 1339 | - if ($context['show_spellchecking']) |
|
| 1340 | - loadJavaScriptFile('spellcheck.js', array('defer' => false), 'smf_spellcheck'); |
|
| 1393 | + if ($context['show_spellchecking']) { |
|
| 1394 | + loadJavaScriptFile('spellcheck.js', array('defer' => false), 'smf_spellcheck'); |
|
| 1395 | + } |
|
| 1341 | 1396 | |
| 1342 | 1397 | // topic.js |
| 1343 | 1398 | loadJavaScriptFile('topic.js', array('defer' => false), 'smf_topic'); |
@@ -1371,16 +1426,19 @@ discard block |
||
| 1371 | 1426 | static $counter = null; |
| 1372 | 1427 | |
| 1373 | 1428 | // If the query returned false, bail. |
| 1374 | - if ($messages_request == false) |
|
| 1375 | - return false; |
|
| 1429 | + if ($messages_request == false) { |
|
| 1430 | + return false; |
|
| 1431 | + } |
|
| 1376 | 1432 | |
| 1377 | 1433 | // Remember which message this is. (ie. reply #83) |
| 1378 | - if ($counter === null || $reset) |
|
| 1379 | - $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
| 1434 | + if ($counter === null || $reset) { |
|
| 1435 | + $counter = empty($options['view_newest_first']) ? $context['start'] : $context['total_visible_posts'] - $context['start']; |
|
| 1436 | + } |
|
| 1380 | 1437 | |
| 1381 | 1438 | // Start from the beginning... |
| 1382 | - if ($reset) |
|
| 1383 | - return @$smcFunc['db_data_seek']($messages_request, 0); |
|
| 1439 | + if ($reset) { |
|
| 1440 | + return @$smcFunc['db_data_seek']($messages_request, 0); |
|
| 1441 | + } |
|
| 1384 | 1442 | |
| 1385 | 1443 | // Attempt to get the next message. |
| 1386 | 1444 | $message = $smcFunc['db_fetch_assoc']($messages_request); |
@@ -1394,19 +1452,21 @@ discard block |
||
| 1394 | 1452 | if (empty($context['icon_sources'])) |
| 1395 | 1453 | { |
| 1396 | 1454 | $context['icon_sources'] = array(); |
| 1397 | - foreach ($context['stable_icons'] as $icon) |
|
| 1398 | - $context['icon_sources'][$icon] = 'images_url'; |
|
| 1455 | + foreach ($context['stable_icons'] as $icon) { |
|
| 1456 | + $context['icon_sources'][$icon] = 'images_url'; |
|
| 1457 | + } |
|
| 1399 | 1458 | } |
| 1400 | 1459 | |
| 1401 | 1460 | // Message Icon Management... check the images exist. |
| 1402 | 1461 | if (empty($modSettings['messageIconChecks_disable'])) |
| 1403 | 1462 | { |
| 1404 | 1463 | // If the current icon isn't known, then we need to do something... |
| 1405 | - if (!isset($context['icon_sources'][$message['icon']])) |
|
| 1406 | - $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 1464 | + if (!isset($context['icon_sources'][$message['icon']])) { |
|
| 1465 | + $context['icon_sources'][$message['icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $message['icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 1466 | + } |
|
| 1467 | + } elseif (!isset($context['icon_sources'][$message['icon']])) { |
|
| 1468 | + $context['icon_sources'][$message['icon']] = 'images_url'; |
|
| 1407 | 1469 | } |
| 1408 | - elseif (!isset($context['icon_sources'][$message['icon']])) |
|
| 1409 | - $context['icon_sources'][$message['icon']] = 'images_url'; |
|
| 1410 | 1470 | |
| 1411 | 1471 | // If you're a lazy bum, you probably didn't give a subject... |
| 1412 | 1472 | $message['subject'] = $message['subject'] != '' ? $message['subject'] : $txt['no_subject']; |
@@ -1431,8 +1491,7 @@ discard block |
||
| 1431 | 1491 | $memberContext[$message['id_member']]['email'] = $message['poster_email']; |
| 1432 | 1492 | $memberContext[$message['id_member']]['show_email'] = allowedTo('moderate_forum'); |
| 1433 | 1493 | $memberContext[$message['id_member']]['is_guest'] = true; |
| 1434 | - } |
|
| 1435 | - else |
|
| 1494 | + } else |
|
| 1436 | 1495 | { |
| 1437 | 1496 | // Define this here to make things a bit more readable |
| 1438 | 1497 | $can_view_warning = $context['user']['can_mod'] || allowedTo('view_warning_any') || ($message['id_member'] == $user_info['id'] && allowedTo('view_warning_own')); |
@@ -1455,8 +1514,9 @@ discard block |
||
| 1455 | 1514 | $message['body'] = parse_bbc($message['body'], $message['smileys_enabled'], $message['id_msg']); |
| 1456 | 1515 | |
| 1457 | 1516 | // If it's in the recycle bin we need to override whatever icon we did have. |
| 1458 | - if (!empty($board_info['recycle'])) |
|
| 1459 | - $message['icon'] = 'recycled'; |
|
| 1517 | + if (!empty($board_info['recycle'])) { |
|
| 1518 | + $message['icon'] = 'recycled'; |
|
| 1519 | + } |
|
| 1460 | 1520 | |
| 1461 | 1521 | require_once($sourcedir . '/Subs-Attachments.php'); |
| 1462 | 1522 | |
@@ -1500,32 +1560,36 @@ discard block |
||
| 1500 | 1560 | } |
| 1501 | 1561 | |
| 1502 | 1562 | // Are likes enable? |
| 1503 | - if (!empty($modSettings['enable_likes'])) |
|
| 1504 | - $output['likes'] = array( |
|
| 1563 | + if (!empty($modSettings['enable_likes'])) { |
|
| 1564 | + $output['likes'] = array( |
|
| 1505 | 1565 | 'count' => $message['likes'], |
| 1506 | 1566 | 'you' => in_array($message['id_msg'], $context['my_likes']), |
| 1507 | 1567 | 'can_like' => !$context['user']['is_guest'] && $message['id_member'] != $context['user']['id'] && !empty($context['can_like']), |
| 1508 | 1568 | ); |
| 1569 | + } |
|
| 1509 | 1570 | |
| 1510 | 1571 | // Is this user the message author? |
| 1511 | 1572 | $output['is_message_author'] = $message['id_member'] == $user_info['id']; |
| 1512 | - if (!empty($output['modified']['name'])) |
|
| 1513 | - $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
| 1573 | + if (!empty($output['modified']['name'])) { |
|
| 1574 | + $output['modified']['last_edit_text'] = sprintf($txt['last_edit_by'], $output['modified']['time'], $output['modified']['name']); |
|
| 1575 | + } |
|
| 1514 | 1576 | |
| 1515 | 1577 | // Did they give a reason for editing? |
| 1516 | - if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) |
|
| 1517 | - $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
| 1578 | + if (!empty($output['modified']['name']) && !empty($output['modified']['reason'])) { |
|
| 1579 | + $output['modified']['last_edit_text'] .= ' ' . sprintf($txt['last_edit_reason'], $output['modified']['reason']); |
|
| 1580 | + } |
|
| 1518 | 1581 | |
| 1519 | 1582 | // Any custom profile fields? |
| 1520 | - if (!empty($memberContext[$message['id_member']]['custom_fields'])) |
|
| 1521 | - foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
| 1583 | + if (!empty($memberContext[$message['id_member']]['custom_fields'])) { |
|
| 1584 | + foreach ($memberContext[$message['id_member']]['custom_fields'] as $custom) |
|
| 1522 | 1585 | $output['custom_fields'][$context['cust_profile_fields_placement'][$custom['placement']]][] = $custom; |
| 1586 | + } |
|
| 1523 | 1587 | |
| 1524 | - if (empty($options['view_newest_first'])) |
|
| 1525 | - $counter++; |
|
| 1526 | - |
|
| 1527 | - else |
|
| 1528 | - $counter--; |
|
| 1588 | + if (empty($options['view_newest_first'])) { |
|
| 1589 | + $counter++; |
|
| 1590 | + } else { |
|
| 1591 | + $counter--; |
|
| 1592 | + } |
|
| 1529 | 1593 | |
| 1530 | 1594 | call_integration_hook('integrate_prepare_display_context', array(&$output, &$message, $counter)); |
| 1531 | 1595 | |
@@ -1551,21 +1615,23 @@ discard block |
||
| 1551 | 1615 | $context['no_last_modified'] = true; |
| 1552 | 1616 | |
| 1553 | 1617 | // Prevent a preview image from being displayed twice. |
| 1554 | - if (isset($_GET['action']) && $_GET['action'] == 'dlattach' && isset($_GET['type']) && ($_GET['type'] == 'avatar' || $_GET['type'] == 'preview')) |
|
| 1555 | - return; |
|
| 1618 | + if (isset($_GET['action']) && $_GET['action'] == 'dlattach' && isset($_GET['type']) && ($_GET['type'] == 'avatar' || $_GET['type'] == 'preview')) { |
|
| 1619 | + return; |
|
| 1620 | + } |
|
| 1556 | 1621 | |
| 1557 | 1622 | // Make sure some attachment was requested! |
| 1558 | - if (!isset($_REQUEST['attach']) && !isset($_REQUEST['id'])) |
|
| 1559 | - fatal_lang_error('no_access', false); |
|
| 1623 | + if (!isset($_REQUEST['attach']) && !isset($_REQUEST['id'])) { |
|
| 1624 | + fatal_lang_error('no_access', false); |
|
| 1625 | + } |
|
| 1560 | 1626 | |
| 1561 | 1627 | $_REQUEST['attach'] = isset($_REQUEST['attach']) ? (int) $_REQUEST['attach'] : (int) $_REQUEST['id']; |
| 1562 | 1628 | |
| 1563 | 1629 | // Do we have a hook wanting to use our attachment system? We use $attachRequest to prevent accidental usage of $request. |
| 1564 | 1630 | $attachRequest = null; |
| 1565 | 1631 | call_integration_hook('integrate_download_request', array(&$attachRequest)); |
| 1566 | - if (!is_null($attachRequest) && $smcFunc['db_is_resource']($attachRequest)) |
|
| 1567 | - $request = $attachRequest; |
|
| 1568 | - else |
|
| 1632 | + if (!is_null($attachRequest) && $smcFunc['db_is_resource']($attachRequest)) { |
|
| 1633 | + $request = $attachRequest; |
|
| 1634 | + } else |
|
| 1569 | 1635 | { |
| 1570 | 1636 | // This checks only the current board for $board/$topic's permissions. |
| 1571 | 1637 | isAllowedTo('view_attachments'); |
@@ -1586,19 +1652,21 @@ discard block |
||
| 1586 | 1652 | ); |
| 1587 | 1653 | } |
| 1588 | 1654 | |
| 1589 | - if ($smcFunc['db_num_rows']($request) == 0) |
|
| 1590 | - fatal_lang_error('no_access', false); |
|
| 1655 | + if ($smcFunc['db_num_rows']($request) == 0) { |
|
| 1656 | + fatal_lang_error('no_access', false); |
|
| 1657 | + } |
|
| 1591 | 1658 | |
| 1592 | 1659 | list ($id_folder, $real_filename, $file_hash, $file_ext, $id_attach, $attachment_type, $mime_type, $is_approved, $id_member) = $smcFunc['db_fetch_row']($request); |
| 1593 | 1660 | $smcFunc['db_free_result']($request); |
| 1594 | 1661 | |
| 1595 | 1662 | // If it isn't yet approved, do they have permission to view it? |
| 1596 | - if (!$is_approved && ($id_member == 0 || $user_info['id'] != $id_member) && ($attachment_type == 0 || $attachment_type == 3)) |
|
| 1597 | - isAllowedTo('approve_posts'); |
|
| 1663 | + if (!$is_approved && ($id_member == 0 || $user_info['id'] != $id_member) && ($attachment_type == 0 || $attachment_type == 3)) { |
|
| 1664 | + isAllowedTo('approve_posts'); |
|
| 1665 | + } |
|
| 1598 | 1666 | |
| 1599 | 1667 | // Update the download counter (unless it's a thumbnail). |
| 1600 | - if ($attachment_type != 3) |
|
| 1601 | - $smcFunc['db_query']('attach_download_increase', ' |
|
| 1668 | + if ($attachment_type != 3) { |
|
| 1669 | + $smcFunc['db_query']('attach_download_increase', ' |
|
| 1602 | 1670 | UPDATE LOW_PRIORITY {db_prefix}attachments |
| 1603 | 1671 | SET downloads = downloads + 1 |
| 1604 | 1672 | WHERE id_attach = {int:id_attach}', |
@@ -1606,15 +1674,15 @@ discard block |
||
| 1606 | 1674 | 'id_attach' => $id_attach, |
| 1607 | 1675 | ) |
| 1608 | 1676 | ); |
| 1677 | + } |
|
| 1609 | 1678 | |
| 1610 | 1679 | $filename = getAttachmentFilename($real_filename, $_REQUEST['attach'], $id_folder, false, $file_hash); |
| 1611 | 1680 | |
| 1612 | 1681 | // This is done to clear any output that was made before now. |
| 1613 | 1682 | ob_end_clean(); |
| 1614 | - if (!empty($modSettings['enableCompressedOutput']) && @filesize($filename) <= 4194304 && in_array($file_ext, array('txt', 'html', 'htm', 'js', 'doc', 'docx', 'rtf', 'css', 'php', 'log', 'xml', 'sql', 'c', 'java'))) |
|
| 1615 | - @ob_start('ob_gzhandler'); |
|
| 1616 | - |
|
| 1617 | - else |
|
| 1683 | + if (!empty($modSettings['enableCompressedOutput']) && @filesize($filename) <= 4194304 && in_array($file_ext, array('txt', 'html', 'htm', 'js', 'doc', 'docx', 'rtf', 'css', 'php', 'log', 'xml', 'sql', 'c', 'java'))) { |
|
| 1684 | + @ob_start('ob_gzhandler'); |
|
| 1685 | + } else |
|
| 1618 | 1686 | { |
| 1619 | 1687 | ob_start(); |
| 1620 | 1688 | header('Content-Encoding: none'); |
@@ -1657,8 +1725,9 @@ discard block |
||
| 1657 | 1725 | // Send the attachment headers. |
| 1658 | 1726 | header('Pragma: '); |
| 1659 | 1727 | |
| 1660 | - if (!isBrowser('gecko')) |
|
| 1661 | - header('Content-Transfer-Encoding: binary'); |
|
| 1728 | + if (!isBrowser('gecko')) { |
|
| 1729 | + header('Content-Transfer-Encoding: binary'); |
|
| 1730 | + } |
|
| 1662 | 1731 | |
| 1663 | 1732 | header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT'); |
| 1664 | 1733 | header('Last-Modified: ' . gmdate('D, d M Y H:i:s', filemtime($filename)) . ' GMT'); |
@@ -1667,18 +1736,19 @@ discard block |
||
| 1667 | 1736 | header('ETag: ' . $eTag); |
| 1668 | 1737 | |
| 1669 | 1738 | // Make sure the mime type warrants an inline display. |
| 1670 | - if (isset($_REQUEST['image']) && !empty($mime_type) && strpos($mime_type, 'image/') !== 0) |
|
| 1671 | - unset($_REQUEST['image']); |
|
| 1739 | + if (isset($_REQUEST['image']) && !empty($mime_type) && strpos($mime_type, 'image/') !== 0) { |
|
| 1740 | + unset($_REQUEST['image']); |
|
| 1741 | + } |
|
| 1672 | 1742 | |
| 1673 | 1743 | // Does this have a mime type? |
| 1674 | - elseif (!empty($mime_type) && (isset($_REQUEST['image']) || !in_array($file_ext, array('jpg', 'gif', 'jpeg', 'x-ms-bmp', 'png', 'psd', 'tiff', 'iff')))) |
|
| 1675 | - header('Content-Type: ' . strtr($mime_type, array('image/bmp' => 'image/x-ms-bmp'))); |
|
| 1676 | - |
|
| 1677 | - else |
|
| 1744 | + elseif (!empty($mime_type) && (isset($_REQUEST['image']) || !in_array($file_ext, array('jpg', 'gif', 'jpeg', 'x-ms-bmp', 'png', 'psd', 'tiff', 'iff')))) { |
|
| 1745 | + header('Content-Type: ' . strtr($mime_type, array('image/bmp' => 'image/x-ms-bmp'))); |
|
| 1746 | + } else |
|
| 1678 | 1747 | { |
| 1679 | 1748 | header('Content-Type: ' . (isBrowser('ie') || isBrowser('opera') ? 'application/octetstream' : 'application/octet-stream')); |
| 1680 | - if (isset($_REQUEST['image'])) |
|
| 1681 | - unset($_REQUEST['image']); |
|
| 1749 | + if (isset($_REQUEST['image'])) { |
|
| 1750 | + unset($_REQUEST['image']); |
|
| 1751 | + } |
|
| 1682 | 1752 | } |
| 1683 | 1753 | |
| 1684 | 1754 | // Convert the file to UTF-8, cuz most browsers dig that. |
@@ -1686,23 +1756,22 @@ discard block |
||
| 1686 | 1756 | $disposition = !isset($_REQUEST['image']) ? 'attachment' : 'inline'; |
| 1687 | 1757 | |
| 1688 | 1758 | // Different browsers like different standards... |
| 1689 | - if (isBrowser('firefox')) |
|
| 1690 | - header('Content-Disposition: ' . $disposition . '; filename*=UTF-8\'\'' . rawurlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name))); |
|
| 1691 | - |
|
| 1692 | - elseif (isBrowser('opera')) |
|
| 1693 | - header('Content-Disposition: ' . $disposition . '; filename="' . preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name) . '"'); |
|
| 1694 | - |
|
| 1695 | - elseif (isBrowser('ie')) |
|
| 1696 | - header('Content-Disposition: ' . $disposition . '; filename="' . urlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name)) . '"'); |
|
| 1697 | - |
|
| 1698 | - else |
|
| 1699 | - header('Content-Disposition: ' . $disposition . '; filename="' . $utf8name . '"'); |
|
| 1759 | + if (isBrowser('firefox')) { |
|
| 1760 | + header('Content-Disposition: ' . $disposition . '; filename*=UTF-8\'\'' . rawurlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name))); |
|
| 1761 | + } elseif (isBrowser('opera')) { |
|
| 1762 | + header('Content-Disposition: ' . $disposition . '; filename="' . preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name) . '"'); |
|
| 1763 | + } elseif (isBrowser('ie')) { |
|
| 1764 | + header('Content-Disposition: ' . $disposition . '; filename="' . urlencode(preg_replace_callback('~&#(\d{3,8});~', 'fixchar__callback', $utf8name)) . '"'); |
|
| 1765 | + } else { |
|
| 1766 | + header('Content-Disposition: ' . $disposition . '; filename="' . $utf8name . '"'); |
|
| 1767 | + } |
|
| 1700 | 1768 | |
| 1701 | 1769 | // If this has an "image extension" - but isn't actually an image - then ensure it isn't cached cause of silly IE. |
| 1702 | - if (!isset($_REQUEST['image']) && in_array($file_ext, array('gif', 'jpg', 'bmp', 'png', 'jpeg', 'tiff'))) |
|
| 1703 | - header('Cache-Control: no-cache'); |
|
| 1704 | - else |
|
| 1705 | - header('Cache-Control: max-age=' . (525600 * 60) . ', private'); |
|
| 1770 | + if (!isset($_REQUEST['image']) && in_array($file_ext, array('gif', 'jpg', 'bmp', 'png', 'jpeg', 'tiff'))) { |
|
| 1771 | + header('Cache-Control: no-cache'); |
|
| 1772 | + } else { |
|
| 1773 | + header('Cache-Control: max-age=' . (525600 * 60) . ', private'); |
|
| 1774 | + } |
|
| 1706 | 1775 | |
| 1707 | 1776 | header('Content-Length: ' . filesize($filename)); |
| 1708 | 1777 | |
@@ -1712,20 +1781,23 @@ discard block |
||
| 1712 | 1781 | // Recode line endings for text files, if enabled. |
| 1713 | 1782 | if (!empty($modSettings['attachmentRecodeLineEndings']) && !isset($_REQUEST['image']) && in_array($file_ext, array('txt', 'css', 'htm', 'html', 'php', 'xml'))) |
| 1714 | 1783 | { |
| 1715 | - if (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== false) |
|
| 1716 | - $callback = function($buffer) |
|
| 1784 | + if (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== false) { |
|
| 1785 | + $callback = function($buffer) |
|
| 1717 | 1786 | { |
| 1718 | 1787 | return preg_replace('~[\r]?\n~', "\r\n", $buffer); |
| 1788 | + } |
|
| 1719 | 1789 | }; |
| 1720 | - elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) |
|
| 1721 | - $callback = function($buffer) |
|
| 1790 | + elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Mac') !== false) { |
|
| 1791 | + $callback = function($buffer) |
|
| 1722 | 1792 | { |
| 1723 | 1793 | return preg_replace('~[\r]?\n~', "\r", $buffer); |
| 1794 | + } |
|
| 1724 | 1795 | }; |
| 1725 | - else |
|
| 1726 | - $callback = function($buffer) |
|
| 1796 | + else { |
|
| 1797 | + $callback = function($buffer) |
|
| 1727 | 1798 | { |
| 1728 | 1799 | return preg_replace('~[\r]?\n~', "\n", $buffer); |
| 1800 | + } |
|
| 1729 | 1801 | }; |
| 1730 | 1802 | } |
| 1731 | 1803 | |
@@ -1733,23 +1805,26 @@ discard block |
||
| 1733 | 1805 | if (filesize($filename) > 4194304) |
| 1734 | 1806 | { |
| 1735 | 1807 | // Forcibly end any output buffering going on. |
| 1736 | - while (@ob_get_level() > 0) |
|
| 1737 | - @ob_end_clean(); |
|
| 1808 | + while (@ob_get_level() > 0) { |
|
| 1809 | + @ob_end_clean(); |
|
| 1810 | + } |
|
| 1738 | 1811 | |
| 1739 | 1812 | $fp = fopen($filename, 'rb'); |
| 1740 | 1813 | while (!feof($fp)) |
| 1741 | 1814 | { |
| 1742 | - if (isset($callback)) |
|
| 1743 | - echo $callback(fread($fp, 8192)); |
|
| 1744 | - else |
|
| 1745 | - echo fread($fp, 8192); |
|
| 1815 | + if (isset($callback)) { |
|
| 1816 | + echo $callback(fread($fp, 8192)); |
|
| 1817 | + } else { |
|
| 1818 | + echo fread($fp, 8192); |
|
| 1819 | + } |
|
| 1746 | 1820 | flush(); |
| 1747 | 1821 | } |
| 1748 | 1822 | fclose($fp); |
| 1749 | 1823 | } |
| 1750 | 1824 | // On some of the less-bright hosts, readfile() is disabled. It's just a faster, more byte safe, version of what's in the if. |
| 1751 | - elseif (isset($callback) || @readfile($filename) === null) |
|
| 1752 | - echo isset($callback) ? $callback(file_get_contents($filename)) : file_get_contents($filename); |
|
| 1825 | + elseif (isset($callback) || @readfile($filename) === null) { |
|
| 1826 | + echo isset($callback) ? $callback(file_get_contents($filename)) : file_get_contents($filename); |
|
| 1827 | + } |
|
| 1753 | 1828 | |
| 1754 | 1829 | obExit(false); |
| 1755 | 1830 | } |
@@ -1762,8 +1837,9 @@ discard block |
||
| 1762 | 1837 | */ |
| 1763 | 1838 | function approved_attach_sort($a, $b) |
| 1764 | 1839 | { |
| 1765 | - if ($a['is_approved'] == $b['is_approved']) |
|
| 1766 | - return 0; |
|
| 1840 | + if ($a['is_approved'] == $b['is_approved']) { |
|
| 1841 | + return 0; |
|
| 1842 | + } |
|
| 1767 | 1843 | |
| 1768 | 1844 | return $a['is_approved'] > $b['is_approved'] ? -1 : 1; |
| 1769 | 1845 | } |
@@ -1780,16 +1856,19 @@ discard block |
||
| 1780 | 1856 | |
| 1781 | 1857 | require_once($sourcedir . '/RemoveTopic.php'); |
| 1782 | 1858 | |
| 1783 | - if (empty($_REQUEST['msgs'])) |
|
| 1784 | - redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
| 1859 | + if (empty($_REQUEST['msgs'])) { |
|
| 1860 | + redirectexit('topic=' . $topic . '.' . $_REQUEST['start']); |
|
| 1861 | + } |
|
| 1785 | 1862 | |
| 1786 | 1863 | $messages = array(); |
| 1787 | - foreach ($_REQUEST['msgs'] as $dummy) |
|
| 1788 | - $messages[] = (int) $dummy; |
|
| 1864 | + foreach ($_REQUEST['msgs'] as $dummy) { |
|
| 1865 | + $messages[] = (int) $dummy; |
|
| 1866 | + } |
|
| 1789 | 1867 | |
| 1790 | 1868 | // We are restoring messages. We handle this in another place. |
| 1791 | - if (isset($_REQUEST['restore_selected'])) |
|
| 1792 | - redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1869 | + if (isset($_REQUEST['restore_selected'])) { |
|
| 1870 | + redirectexit('action=restoretopic;msgs=' . implode(',', $messages) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 1871 | + } |
|
| 1793 | 1872 | if (isset($_REQUEST['split_selection'])) |
| 1794 | 1873 | { |
| 1795 | 1874 | $request = $smcFunc['db_query']('', ' |
@@ -1808,8 +1887,9 @@ discard block |
||
| 1808 | 1887 | } |
| 1809 | 1888 | |
| 1810 | 1889 | // Allowed to delete any message? |
| 1811 | - if (allowedTo('delete_any')) |
|
| 1812 | - $allowed_all = true; |
|
| 1890 | + if (allowedTo('delete_any')) { |
|
| 1891 | + $allowed_all = true; |
|
| 1892 | + } |
|
| 1813 | 1893 | // Allowed to delete replies to their messages? |
| 1814 | 1894 | elseif (allowedTo('delete_replies')) |
| 1815 | 1895 | { |
@@ -1826,13 +1906,14 @@ discard block |
||
| 1826 | 1906 | $smcFunc['db_free_result']($request); |
| 1827 | 1907 | |
| 1828 | 1908 | $allowed_all = $starter == $user_info['id']; |
| 1909 | + } else { |
|
| 1910 | + $allowed_all = false; |
|
| 1829 | 1911 | } |
| 1830 | - else |
|
| 1831 | - $allowed_all = false; |
|
| 1832 | 1912 | |
| 1833 | 1913 | // Make sure they're allowed to delete their own messages, if not any. |
| 1834 | - if (!$allowed_all) |
|
| 1835 | - isAllowedTo('delete_own'); |
|
| 1914 | + if (!$allowed_all) { |
|
| 1915 | + isAllowedTo('delete_own'); |
|
| 1916 | + } |
|
| 1836 | 1917 | |
| 1837 | 1918 | // Allowed to remove which messages? |
| 1838 | 1919 | $request = $smcFunc['db_query']('', ' |
@@ -1852,8 +1933,9 @@ discard block |
||
| 1852 | 1933 | $messages = array(); |
| 1853 | 1934 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1854 | 1935 | { |
| 1855 | - if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) |
|
| 1856 | - continue; |
|
| 1936 | + if (!$allowed_all && !empty($modSettings['edit_disable_time']) && $row['poster_time'] + $modSettings['edit_disable_time'] * 60 < time()) { |
|
| 1937 | + continue; |
|
| 1938 | + } |
|
| 1857 | 1939 | |
| 1858 | 1940 | $messages[$row['id_msg']] = array($row['subject'], $row['id_member']); |
| 1859 | 1941 | } |
@@ -1876,17 +1958,20 @@ discard block |
||
| 1876 | 1958 | foreach ($messages as $message => $info) |
| 1877 | 1959 | { |
| 1878 | 1960 | // Just skip the first message - if it's not the last. |
| 1879 | - if ($message == $first_message && $message != $last_message) |
|
| 1880 | - continue; |
|
| 1961 | + if ($message == $first_message && $message != $last_message) { |
|
| 1962 | + continue; |
|
| 1963 | + } |
|
| 1881 | 1964 | // If the first message is going then don't bother going back to the topic as we're effectively deleting it. |
| 1882 | - elseif ($message == $first_message) |
|
| 1883 | - $topicGone = true; |
|
| 1965 | + elseif ($message == $first_message) { |
|
| 1966 | + $topicGone = true; |
|
| 1967 | + } |
|
| 1884 | 1968 | |
| 1885 | 1969 | removeMessage($message); |
| 1886 | 1970 | |
| 1887 | 1971 | // Log this moderation action ;). |
| 1888 | - if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) |
|
| 1889 | - logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
| 1972 | + if (allowedTo('delete_any') && (!allowedTo('delete_own') || $info[1] != $user_info['id'])) { |
|
| 1973 | + logAction('delete', array('topic' => $topic, 'subject' => $info[0], 'member' => $info[1], 'board' => $board)); |
|
| 1974 | + } |
|
| 1890 | 1975 | } |
| 1891 | 1976 | |
| 1892 | 1977 | redirectexit(!empty($topicGone) ? 'board=' . $board : 'topic=' . $topic . '.' . $_REQUEST['start']); |
@@ -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 | * Edit the position and properties of a category. |
@@ -42,8 +43,9 @@ discard block |
||
| 42 | 43 | $cat_order = array(); |
| 43 | 44 | |
| 44 | 45 | // Setting 'move_after' to '0' moves the category to the top. |
| 45 | - if ($catOptions['move_after'] == 0) |
|
| 46 | - $cats[] = $category_id; |
|
| 46 | + if ($catOptions['move_after'] == 0) { |
|
| 47 | + $cats[] = $category_id; |
|
| 48 | + } |
|
| 47 | 49 | |
| 48 | 50 | // Grab the categories sorted by cat_order. |
| 49 | 51 | $request = $smcFunc['db_query']('', ' |
@@ -55,17 +57,19 @@ discard block |
||
| 55 | 57 | ); |
| 56 | 58 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 57 | 59 | { |
| 58 | - if ($row['id_cat'] != $category_id) |
|
| 59 | - $cats[] = $row['id_cat']; |
|
| 60 | - if ($row['id_cat'] == $catOptions['move_after']) |
|
| 61 | - $cats[] = $category_id; |
|
| 60 | + if ($row['id_cat'] != $category_id) { |
|
| 61 | + $cats[] = $row['id_cat']; |
|
| 62 | + } |
|
| 63 | + if ($row['id_cat'] == $catOptions['move_after']) { |
|
| 64 | + $cats[] = $category_id; |
|
| 65 | + } |
|
| 62 | 66 | $cat_order[$row['id_cat']] = $row['cat_order']; |
| 63 | 67 | } |
| 64 | 68 | $smcFunc['db_free_result']($request); |
| 65 | 69 | |
| 66 | 70 | // Set the new order for the categories. |
| 67 | - foreach ($cats as $index => $cat) |
|
| 68 | - if ($index != $cat_order[$cat]) |
|
| 71 | + foreach ($cats as $index => $cat) { |
|
| 72 | + if ($index != $cat_order[$cat]) |
|
| 69 | 73 | $smcFunc['db_query']('', ' |
| 70 | 74 | UPDATE {db_prefix}categories |
| 71 | 75 | SET cat_order = {int:new_order} |
@@ -75,6 +79,7 @@ discard block |
||
| 75 | 79 | 'current_category' => $cat, |
| 76 | 80 | ) |
| 77 | 81 | ); |
| 82 | + } |
|
| 78 | 83 | |
| 79 | 84 | // If the category order changed, so did the board order. |
| 80 | 85 | require_once($sourcedir . '/Subs-Boards.php'); |
@@ -117,8 +122,9 @@ discard block |
||
| 117 | 122 | )) |
| 118 | 123 | ); |
| 119 | 124 | |
| 120 | - if (empty($catOptions['dont_log'])) |
|
| 121 | - logAction('edit_cat', array('catname' => isset($catOptions['cat_name']) ? $catOptions['cat_name'] : $category_id), 'admin'); |
|
| 125 | + if (empty($catOptions['dont_log'])) { |
|
| 126 | + logAction('edit_cat', array('catname' => isset($catOptions['cat_name']) ? $catOptions['cat_name'] : $category_id), 'admin'); |
|
| 127 | + } |
|
| 122 | 128 | } |
| 123 | 129 | } |
| 124 | 130 | |
@@ -135,16 +141,20 @@ discard block |
||
| 135 | 141 | global $smcFunc; |
| 136 | 142 | |
| 137 | 143 | // Check required values. |
| 138 | - if (!isset($catOptions['cat_name']) || trim($catOptions['cat_name']) == '') |
|
| 139 | - trigger_error('createCategory(): A category name is required', E_USER_ERROR); |
|
| 144 | + if (!isset($catOptions['cat_name']) || trim($catOptions['cat_name']) == '') { |
|
| 145 | + trigger_error('createCategory(): A category name is required', E_USER_ERROR); |
|
| 146 | + } |
|
| 140 | 147 | |
| 141 | 148 | // Set default values. |
| 142 | - if (!isset($catOptions['cat_desc'])) |
|
| 143 | - $catOptions['cat_desc'] = ''; |
|
| 144 | - if (!isset($catOptions['move_after'])) |
|
| 145 | - $catOptions['move_after'] = 0; |
|
| 146 | - if (!isset($catOptions['is_collapsible'])) |
|
| 147 | - $catOptions['is_collapsible'] = true; |
|
| 149 | + if (!isset($catOptions['cat_desc'])) { |
|
| 150 | + $catOptions['cat_desc'] = ''; |
|
| 151 | + } |
|
| 152 | + if (!isset($catOptions['move_after'])) { |
|
| 153 | + $catOptions['move_after'] = 0; |
|
| 154 | + } |
|
| 155 | + if (!isset($catOptions['is_collapsible'])) { |
|
| 156 | + $catOptions['is_collapsible'] = true; |
|
| 157 | + } |
|
| 148 | 158 | // Don't log an edit right after. |
| 149 | 159 | $catOptions['dont_log'] = true; |
| 150 | 160 | |
@@ -210,21 +220,24 @@ discard block |
||
| 210 | 220 | ) |
| 211 | 221 | ); |
| 212 | 222 | $boards_inside = array(); |
| 213 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 214 | - $boards_inside[] = $row['id_board']; |
|
| 223 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 224 | + $boards_inside[] = $row['id_board']; |
|
| 225 | + } |
|
| 215 | 226 | $smcFunc['db_free_result']($request); |
| 216 | 227 | |
| 217 | - if (!empty($boards_inside)) |
|
| 218 | - deleteBoards($boards_inside, null); |
|
| 228 | + if (!empty($boards_inside)) { |
|
| 229 | + deleteBoards($boards_inside, null); |
|
| 230 | + } |
|
| 219 | 231 | } |
| 220 | 232 | |
| 221 | 233 | // Make sure the safe category is really safe. |
| 222 | - elseif (in_array($moveBoardsTo, $categories)) |
|
| 223 | - trigger_error('deleteCategories(): You cannot move the boards to a category that\'s being deleted', E_USER_ERROR); |
|
| 234 | + elseif (in_array($moveBoardsTo, $categories)) { |
|
| 235 | + trigger_error('deleteCategories(): You cannot move the boards to a category that\'s being deleted', E_USER_ERROR); |
|
| 236 | + } |
|
| 224 | 237 | |
| 225 | 238 | // Move the boards inside the categories to a safe category. |
| 226 | - else |
|
| 227 | - $smcFunc['db_query']('', ' |
|
| 239 | + else { |
|
| 240 | + $smcFunc['db_query']('', ' |
|
| 228 | 241 | UPDATE {db_prefix}boards |
| 229 | 242 | SET id_cat = {int:new_parent_cat} |
| 230 | 243 | WHERE id_cat IN ({array_int:category_list})', |
@@ -233,6 +246,7 @@ discard block |
||
| 233 | 246 | 'new_parent_cat' => $moveBoardsTo, |
| 234 | 247 | ) |
| 235 | 248 | ); |
| 249 | + } |
|
| 236 | 250 | |
| 237 | 251 | // Do the deletion of the category itself |
| 238 | 252 | $smcFunc['db_query']('', ' |
@@ -244,8 +258,9 @@ discard block |
||
| 244 | 258 | ); |
| 245 | 259 | |
| 246 | 260 | // Log what we've done. |
| 247 | - foreach ($categories as $category) |
|
| 248 | - logAction('delete_cat', array('catname' => $cat_tree[$category]['node']['name']), 'admin'); |
|
| 261 | + foreach ($categories as $category) { |
|
| 262 | + logAction('delete_cat', array('catname' => $cat_tree[$category]['node']['name']), 'admin'); |
|
| 263 | + } |
|
| 249 | 264 | |
| 250 | 265 | // Get all boards back into the right order. |
| 251 | 266 | reorderBoards(); |
@@ -14,8 +14,9 @@ discard block |
||
| 14 | 14 | * @version 2.1 Beta 4 |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | -if (!defined('SMF')) |
|
| 17 | +if (!defined('SMF')) { |
|
| 18 | 18 | die('No direct access...'); |
| 19 | +} |
|
| 19 | 20 | |
| 20 | 21 | /** |
| 21 | 22 | * Show the list of topics in this board, along with any child boards. |
@@ -56,8 +57,9 @@ discard block |
||
| 56 | 57 | |
| 57 | 58 | $context['name'] = $board_info['name']; |
| 58 | 59 | $context['description'] = $board_info['description']; |
| 59 | - if (!empty($board_info['description'])) |
|
| 60 | - $context['meta_description'] = strip_tags($board_info['description']); |
|
| 60 | + if (!empty($board_info['description'])) { |
|
| 61 | + $context['meta_description'] = strip_tags($board_info['description']); |
|
| 62 | + } |
|
| 61 | 63 | |
| 62 | 64 | // How many topics do we have in total? |
| 63 | 65 | $board_info['total_topics'] = allowedTo('approve_posts') ? $board_info['num_topics'] + $board_info['unapproved_topics'] : $board_info['num_topics'] + $board_info['unapproved_user_topics']; |
@@ -73,12 +75,14 @@ discard block |
||
| 73 | 75 | $session_name = session_name(); |
| 74 | 76 | foreach ($_GET as $k => $v) |
| 75 | 77 | { |
| 76 | - if (!in_array($k, array('board', 'start', $session_name))) |
|
| 77 | - $context['robot_no_index'] = true; |
|
| 78 | + if (!in_array($k, array('board', 'start', $session_name))) { |
|
| 79 | + $context['robot_no_index'] = true; |
|
| 80 | + } |
|
| 78 | 81 | } |
| 79 | 82 | } |
| 80 | - if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) |
|
| 81 | - $context['robot_no_index'] = true; |
|
| 83 | + if (!empty($_REQUEST['start']) && (!is_numeric($_REQUEST['start']) || $_REQUEST['start'] % $context['messages_per_page'] != 0)) { |
|
| 84 | + $context['robot_no_index'] = true; |
|
| 85 | + } |
|
| 82 | 86 | |
| 83 | 87 | // If we can view unapproved messages and there are some build up a list. |
| 84 | 88 | if (allowedTo('approve_posts') && ($board_info['unapproved_topics'] || $board_info['unapproved_posts'])) |
@@ -89,14 +93,16 @@ discard block |
||
| 89 | 93 | } |
| 90 | 94 | |
| 91 | 95 | // We only know these. |
| 92 | - if (isset($_REQUEST['sort']) && !in_array($_REQUEST['sort'], array('subject', 'starter', 'last_poster', 'replies', 'views', 'first_post', 'last_post'))) |
|
| 93 | - $_REQUEST['sort'] = 'last_post'; |
|
| 96 | + if (isset($_REQUEST['sort']) && !in_array($_REQUEST['sort'], array('subject', 'starter', 'last_poster', 'replies', 'views', 'first_post', 'last_post'))) { |
|
| 97 | + $_REQUEST['sort'] = 'last_post'; |
|
| 98 | + } |
|
| 94 | 99 | |
| 95 | 100 | // Make sure the starting place makes sense and construct the page index. |
| 96 | - if (isset($_REQUEST['sort'])) |
|
| 97 | - $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 98 | - else |
|
| 99 | - $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d', $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 101 | + if (isset($_REQUEST['sort'])) { |
|
| 102 | + $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d;sort=' . $_REQUEST['sort'] . (isset($_REQUEST['desc']) ? ';desc' : ''), $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 103 | + } else { |
|
| 104 | + $context['page_index'] = constructPageIndex($scripturl . '?board=' . $board . '.%1$d', $_REQUEST['start'], $board_info['total_topics'], $maxindex, true); |
|
| 105 | + } |
|
| 100 | 106 | $context['start'] = &$_REQUEST['start']; |
| 101 | 107 | |
| 102 | 108 | // Set a canonical URL for this page. |
@@ -132,14 +138,16 @@ discard block |
||
| 132 | 138 | $context['link_moderators'] = array(); |
| 133 | 139 | if (!empty($board_info['moderators'])) |
| 134 | 140 | { |
| 135 | - foreach ($board_info['moderators'] as $mod) |
|
| 136 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 141 | + foreach ($board_info['moderators'] as $mod) { |
|
| 142 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $mod['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod['name'] . '</a>'; |
|
| 143 | + } |
|
| 137 | 144 | } |
| 138 | 145 | if (!empty($board_info['moderator_groups'])) |
| 139 | 146 | { |
| 140 | 147 | // By default just tack the moderator groups onto the end of the members |
| 141 | - foreach ($board_info['moderator_groups'] as $mod_group) |
|
| 142 | - $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 148 | + foreach ($board_info['moderator_groups'] as $mod_group) { |
|
| 149 | + $context['link_moderators'][] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $mod_group['id'] . '" title="' . $txt['board_moderator'] . '">' . $mod_group['name'] . '</a>'; |
|
| 150 | + } |
|
| 143 | 151 | } |
| 144 | 152 | |
| 145 | 153 | // Now we tack the info onto the end of the linktree |
@@ -191,20 +199,24 @@ discard block |
||
| 191 | 199 | ); |
| 192 | 200 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 193 | 201 | { |
| 194 | - if (empty($row['id_member'])) |
|
| 195 | - continue; |
|
| 202 | + if (empty($row['id_member'])) { |
|
| 203 | + continue; |
|
| 204 | + } |
|
| 196 | 205 | |
| 197 | - if (!empty($row['online_color'])) |
|
| 198 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 199 | - else |
|
| 200 | - $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 206 | + if (!empty($row['online_color'])) { |
|
| 207 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '" style="color: ' . $row['online_color'] . ';">' . $row['real_name'] . '</a>'; |
|
| 208 | + } else { |
|
| 209 | + $link = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 210 | + } |
|
| 201 | 211 | |
| 202 | 212 | $is_buddy = in_array($row['id_member'], $user_info['buddies']); |
| 203 | - if ($is_buddy) |
|
| 204 | - $link = '<strong>' . $link . '</strong>'; |
|
| 213 | + if ($is_buddy) { |
|
| 214 | + $link = '<strong>' . $link . '</strong>'; |
|
| 215 | + } |
|
| 205 | 216 | |
| 206 | - if (!empty($row['show_online']) || allowedTo('moderate_forum')) |
|
| 207 | - $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 217 | + if (!empty($row['show_online']) || allowedTo('moderate_forum')) { |
|
| 218 | + $context['view_members_list'][$row['log_time'] . $row['member_name']] = empty($row['show_online']) ? '<em>' . $link . '</em>' : $link; |
|
| 219 | + } |
|
| 208 | 220 | // @todo why are we filling this array of data that are just counted (twice) and discarded? ??? |
| 209 | 221 | $context['view_members'][$row['log_time'] . $row['member_name']] = array( |
| 210 | 222 | 'id' => $row['id_member'], |
@@ -217,8 +229,9 @@ discard block |
||
| 217 | 229 | 'hidden' => empty($row['show_online']), |
| 218 | 230 | ); |
| 219 | 231 | |
| 220 | - if (empty($row['show_online'])) |
|
| 221 | - $context['view_num_hidden']++; |
|
| 232 | + if (empty($row['show_online'])) { |
|
| 233 | + $context['view_num_hidden']++; |
|
| 234 | + } |
|
| 222 | 235 | } |
| 223 | 236 | $context['view_num_guests'] = $smcFunc['db_num_rows']($request) - count($context['view_members']); |
| 224 | 237 | $smcFunc['db_free_result']($request); |
@@ -257,8 +270,9 @@ discard block |
||
| 257 | 270 | $context['sort_direction'] = $ascending ? 'up' : 'down'; |
| 258 | 271 | $txt['starter'] = $txt['started_by']; |
| 259 | 272 | |
| 260 | - foreach ($sort_methods as $key => $val) |
|
| 261 | - $context['topics_headers'][$key] = '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.' . $context['start'] . ';sort=' . $key . ($context['sort_by'] == $key && $context['sort_direction'] == 'up' ? ';desc' : '') . '">' . $txt[$key] . ($context['sort_by'] == $key ? '<span class="sort sort_' . $context['sort_direction'] . '"></span>' : '') . '</a>'; |
|
| 273 | + foreach ($sort_methods as $key => $val) { |
|
| 274 | + $context['topics_headers'][$key] = '<a href="' . $scripturl . '?board=' . $context['current_board'] . '.' . $context['start'] . ';sort=' . $key . ($context['sort_by'] == $key && $context['sort_direction'] == 'up' ? ';desc' : '') . '">' . $txt[$key] . ($context['sort_by'] == $key ? '<span class="sort sort_' . $context['sort_direction'] . '"></span>' : '') . '</a>'; |
|
| 275 | + } |
|
| 262 | 276 | |
| 263 | 277 | // Calculate the fastest way to get the topics. |
| 264 | 278 | $start = (int) $_REQUEST['start']; |
@@ -268,14 +282,15 @@ discard block |
||
| 268 | 282 | $fake_ascending = true; |
| 269 | 283 | $maxindex = $board_info['total_topics'] < $start + $maxindex + 1 ? $board_info['total_topics'] - $start : $maxindex; |
| 270 | 284 | $start = $board_info['total_topics'] < $start + $maxindex + 1 ? 0 : $board_info['total_topics'] - $start - $maxindex; |
| 285 | + } else { |
|
| 286 | + $fake_ascending = false; |
|
| 271 | 287 | } |
| 272 | - else |
|
| 273 | - $fake_ascending = false; |
|
| 274 | 288 | |
| 275 | 289 | // Setup the default topic icons... |
| 276 | 290 | $context['icon_sources'] = array(); |
| 277 | - foreach ($context['stable_icons'] as $icon) |
|
| 278 | - $context['icon_sources'][$icon] = 'images_url'; |
|
| 291 | + foreach ($context['stable_icons'] as $icon) { |
|
| 292 | + $context['icon_sources'][$icon] = 'images_url'; |
|
| 293 | + } |
|
| 279 | 294 | |
| 280 | 295 | $topic_ids = array(); |
| 281 | 296 | $context['topics'] = array(); |
@@ -306,8 +321,9 @@ discard block |
||
| 306 | 321 | ) |
| 307 | 322 | ); |
| 308 | 323 | $topic_ids = array(); |
| 309 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 310 | - $topic_ids[] = $row['id_topic']; |
|
| 324 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 325 | + $topic_ids[] = $row['id_topic']; |
|
| 326 | + } |
|
| 311 | 327 | } |
| 312 | 328 | |
| 313 | 329 | // Grab the appropriate topic information... |
@@ -363,11 +379,13 @@ discard block |
||
| 363 | 379 | // Begin 'printing' the message index for current board. |
| 364 | 380 | while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 365 | 381 | { |
| 366 | - if ($row['id_poll'] > 0 && $modSettings['pollMode'] == '0') |
|
| 367 | - continue; |
|
| 382 | + if ($row['id_poll'] > 0 && $modSettings['pollMode'] == '0') { |
|
| 383 | + continue; |
|
| 384 | + } |
|
| 368 | 385 | |
| 369 | - if (!$pre_query) |
|
| 370 | - $topic_ids[] = $row['id_topic']; |
|
| 386 | + if (!$pre_query) { |
|
| 387 | + $topic_ids[] = $row['id_topic']; |
|
| 388 | + } |
|
| 371 | 389 | |
| 372 | 390 | // Reference the main color class. |
| 373 | 391 | $colorClass = 'windowbg'; |
@@ -377,8 +395,9 @@ discard block |
||
| 377 | 395 | { |
| 378 | 396 | // Limit them to $modSettings['preview_characters'] characters |
| 379 | 397 | $row['first_body'] = strip_tags(strtr(parse_bbc($row['first_body'], $row['first_smileys'], $row['id_first_msg']), array('<br>' => ' '))); |
| 380 | - if ($smcFunc['strlen']($row['first_body']) > $modSettings['preview_characters']) |
|
| 381 | - $row['first_body'] = $smcFunc['substr']($row['first_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 398 | + if ($smcFunc['strlen']($row['first_body']) > $modSettings['preview_characters']) { |
|
| 399 | + $row['first_body'] = $smcFunc['substr']($row['first_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 400 | + } |
|
| 382 | 401 | |
| 383 | 402 | // Censor the subject and message preview. |
| 384 | 403 | censorText($row['first_subject']); |
@@ -389,27 +408,27 @@ discard block |
||
| 389 | 408 | { |
| 390 | 409 | $row['last_subject'] = $row['first_subject']; |
| 391 | 410 | $row['last_body'] = $row['first_body']; |
| 392 | - } |
|
| 393 | - else |
|
| 411 | + } else |
|
| 394 | 412 | { |
| 395 | 413 | $row['last_body'] = strip_tags(strtr(parse_bbc($row['last_body'], $row['last_smileys'], $row['id_last_msg']), array('<br>' => ' '))); |
| 396 | - if ($smcFunc['strlen']($row['last_body']) > $modSettings['preview_characters']) |
|
| 397 | - $row['last_body'] = $smcFunc['substr']($row['last_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 414 | + if ($smcFunc['strlen']($row['last_body']) > $modSettings['preview_characters']) { |
|
| 415 | + $row['last_body'] = $smcFunc['substr']($row['last_body'], 0, $modSettings['preview_characters']) . '...'; |
|
| 416 | + } |
|
| 398 | 417 | |
| 399 | 418 | censorText($row['last_subject']); |
| 400 | 419 | censorText($row['last_body']); |
| 401 | 420 | } |
| 402 | - } |
|
| 403 | - else |
|
| 421 | + } else |
|
| 404 | 422 | { |
| 405 | 423 | $row['first_body'] = ''; |
| 406 | 424 | $row['last_body'] = ''; |
| 407 | 425 | censorText($row['first_subject']); |
| 408 | 426 | |
| 409 | - if ($row['id_first_msg'] == $row['id_last_msg']) |
|
| 410 | - $row['last_subject'] = $row['first_subject']; |
|
| 411 | - else |
|
| 412 | - censorText($row['last_subject']); |
|
| 427 | + if ($row['id_first_msg'] == $row['id_last_msg']) { |
|
| 428 | + $row['last_subject'] = $row['first_subject']; |
|
| 429 | + } else { |
|
| 430 | + censorText($row['last_subject']); |
|
| 431 | + } |
|
| 413 | 432 | } |
| 414 | 433 | |
| 415 | 434 | // Decide how many pages the topic should have. |
@@ -420,42 +439,50 @@ discard block |
||
| 420 | 439 | $pages = constructPageIndex($scripturl . '?topic=' . $row['id_topic'] . '.%1$d', $start, $row['num_replies'] + 1, $context['messages_per_page'], true, false); |
| 421 | 440 | |
| 422 | 441 | // If we can use all, show all. |
| 423 | - if (!empty($modSettings['enableAllMessages']) && $row['num_replies'] + 1 < $modSettings['enableAllMessages']) |
|
| 424 | - $pages .= ' <a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0;all">' . $txt['all'] . '</a>'; |
|
| 442 | + if (!empty($modSettings['enableAllMessages']) && $row['num_replies'] + 1 < $modSettings['enableAllMessages']) { |
|
| 443 | + $pages .= ' <a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0;all">' . $txt['all'] . '</a>'; |
|
| 444 | + } |
|
| 445 | + } else { |
|
| 446 | + $pages = ''; |
|
| 425 | 447 | } |
| 426 | - else |
|
| 427 | - $pages = ''; |
|
| 428 | 448 | |
| 429 | 449 | // We need to check the topic icons exist... |
| 430 | 450 | if (!empty($modSettings['messageIconChecks_enable'])) |
| 431 | 451 | { |
| 432 | - if (!isset($context['icon_sources'][$row['first_icon']])) |
|
| 433 | - $context['icon_sources'][$row['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 434 | - if (!isset($context['icon_sources'][$row['last_icon']])) |
|
| 435 | - $context['icon_sources'][$row['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 436 | - } |
|
| 437 | - else |
|
| 452 | + if (!isset($context['icon_sources'][$row['first_icon']])) { |
|
| 453 | + $context['icon_sources'][$row['first_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['first_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 454 | + } |
|
| 455 | + if (!isset($context['icon_sources'][$row['last_icon']])) { |
|
| 456 | + $context['icon_sources'][$row['last_icon']] = file_exists($settings['theme_dir'] . '/images/post/' . $row['last_icon'] . '.png') ? 'images_url' : 'default_images_url'; |
|
| 457 | + } |
|
| 458 | + } else |
|
| 438 | 459 | { |
| 439 | - if (!isset($context['icon_sources'][$row['first_icon']])) |
|
| 440 | - $context['icon_sources'][$row['first_icon']] = 'images_url'; |
|
| 441 | - if (!isset($context['icon_sources'][$row['last_icon']])) |
|
| 442 | - $context['icon_sources'][$row['last_icon']] = 'images_url'; |
|
| 460 | + if (!isset($context['icon_sources'][$row['first_icon']])) { |
|
| 461 | + $context['icon_sources'][$row['first_icon']] = 'images_url'; |
|
| 462 | + } |
|
| 463 | + if (!isset($context['icon_sources'][$row['last_icon']])) { |
|
| 464 | + $context['icon_sources'][$row['last_icon']] = 'images_url'; |
|
| 465 | + } |
|
| 443 | 466 | } |
| 444 | 467 | |
| 445 | - if (!empty($board_info['recycle'])) |
|
| 446 | - $row['first_icon'] = 'recycled'; |
|
| 468 | + if (!empty($board_info['recycle'])) { |
|
| 469 | + $row['first_icon'] = 'recycled'; |
|
| 470 | + } |
|
| 447 | 471 | |
| 448 | 472 | // Is this topic pending approval, or does it have any posts pending approval? |
| 449 | - if ($context['can_approve_posts'] && $row['unapproved_posts']) |
|
| 450 | - $colorClass .= (!$row['approved'] ? ' approvetopic' : ' approvepost'); |
|
| 473 | + if ($context['can_approve_posts'] && $row['unapproved_posts']) { |
|
| 474 | + $colorClass .= (!$row['approved'] ? ' approvetopic' : ' approvepost'); |
|
| 475 | + } |
|
| 451 | 476 | |
| 452 | 477 | // Sticky topics should get a different color, too. |
| 453 | - if ($row['is_sticky']) |
|
| 454 | - $colorClass .= ' sticky'; |
|
| 478 | + if ($row['is_sticky']) { |
|
| 479 | + $colorClass .= ' sticky'; |
|
| 480 | + } |
|
| 455 | 481 | |
| 456 | 482 | // Locked topics get special treatment as well. |
| 457 | - if ($row['locked']) |
|
| 458 | - $colorClass .= ' locked'; |
|
| 483 | + if ($row['locked']) { |
|
| 484 | + $colorClass .= ' locked'; |
|
| 485 | + } |
|
| 459 | 486 | |
| 460 | 487 | // 'Print' the topic info. |
| 461 | 488 | $context['topics'][$row['id_topic']] = array_merge($row, array( |
@@ -536,8 +563,9 @@ discard block |
||
| 536 | 563 | $smcFunc['db_free_result']($result); |
| 537 | 564 | |
| 538 | 565 | // Fix the sequence of topics if they were retrieved in the wrong order. (for speed reasons...) |
| 539 | - if ($fake_ascending) |
|
| 540 | - $context['topics'] = array_reverse($context['topics'], true); |
|
| 566 | + if ($fake_ascending) { |
|
| 567 | + $context['topics'] = array_reverse($context['topics'], true); |
|
| 568 | + } |
|
| 541 | 569 | |
| 542 | 570 | if (!empty($modSettings['enableParticipation']) && !$user_info['is_guest'] && !empty($topic_ids)) |
| 543 | 571 | { |
@@ -554,8 +582,9 @@ discard block |
||
| 554 | 582 | 'limit' => count($topic_ids), |
| 555 | 583 | ) |
| 556 | 584 | ); |
| 557 | - while ($row = $smcFunc['db_fetch_assoc']($result)) |
|
| 558 | - $context['topics'][$row['id_topic']]['is_posted_in'] = true; |
|
| 585 | + while ($row = $smcFunc['db_fetch_assoc']($result)) { |
|
| 586 | + $context['topics'][$row['id_topic']]['is_posted_in'] = true; |
|
| 587 | + } |
|
| 559 | 588 | $smcFunc['db_free_result']($result); |
| 560 | 589 | } |
| 561 | 590 | } |
@@ -580,9 +609,9 @@ discard block |
||
| 580 | 609 | // Can we restore topics? |
| 581 | 610 | $context['can_restore'] = allowedTo('move_any') && !empty($board_info['recycle']); |
| 582 | 611 | |
| 583 | - if ($user_info['is_admin'] || $modSettings['topic_move_any']) |
|
| 584 | - $context['can_move_any'] = true; |
|
| 585 | - else |
|
| 612 | + if ($user_info['is_admin'] || $modSettings['topic_move_any']) { |
|
| 613 | + $context['can_move_any'] = true; |
|
| 614 | + } else |
|
| 586 | 615 | { |
| 587 | 616 | // We'll use this in a minute |
| 588 | 617 | $boards_allowed = boardsAllowedTo('post_new'); |
@@ -609,11 +638,13 @@ discard block |
||
| 609 | 638 | } |
| 610 | 639 | |
| 611 | 640 | // Can we use quick moderation checkboxes? |
| 612 | - if ($options['display_quick_mod'] == 1) |
|
| 613 | - $context['can_quick_mod'] = $context['user']['is_logged'] || $context['can_approve'] || $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'] || $context['can_merge'] || $context['can_restore']; |
|
| 641 | + if ($options['display_quick_mod'] == 1) { |
|
| 642 | + $context['can_quick_mod'] = $context['user']['is_logged'] || $context['can_approve'] || $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move'] || $context['can_merge'] || $context['can_restore']; |
|
| 643 | + } |
|
| 614 | 644 | // Or the icons? |
| 615 | - else |
|
| 616 | - $context['can_quick_mod'] = $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move']; |
|
| 645 | + else { |
|
| 646 | + $context['can_quick_mod'] = $context['can_remove'] || $context['can_lock'] || $context['can_sticky'] || $context['can_move']; |
|
| 647 | + } |
|
| 617 | 648 | } |
| 618 | 649 | |
| 619 | 650 | if (!empty($context['can_quick_mod']) && $options['display_quick_mod'] == 1) |
@@ -647,13 +678,15 @@ discard block |
||
| 647 | 678 | ); |
| 648 | 679 | |
| 649 | 680 | // We've seen all these boards now! |
| 650 | - foreach ($board_info['parent_boards'] as $k => $dummy) |
|
| 651 | - if (isset($_SESSION['topicseen_cache'][$k])) |
|
| 681 | + foreach ($board_info['parent_boards'] as $k => $dummy) { |
|
| 682 | + if (isset($_SESSION['topicseen_cache'][$k])) |
|
| 652 | 683 | unset($_SESSION['topicseen_cache'][$k]); |
| 684 | + } |
|
| 653 | 685 | } |
| 654 | 686 | |
| 655 | - if (isset($_SESSION['topicseen_cache'][$board])) |
|
| 656 | - unset($_SESSION['topicseen_cache'][$board]); |
|
| 687 | + if (isset($_SESSION['topicseen_cache'][$board])) { |
|
| 688 | + unset($_SESSION['topicseen_cache'][$board]); |
|
| 689 | + } |
|
| 657 | 690 | |
| 658 | 691 | $request = $smcFunc['db_query']('', ' |
| 659 | 692 | SELECT id_topic, id_board, sent |
@@ -674,8 +707,9 @@ discard block |
||
| 674 | 707 | $context['is_marked_notify'] = true; |
| 675 | 708 | $board_sent = $row['sent']; |
| 676 | 709 | } |
| 677 | - if (!empty($row['id_topic'])) |
|
| 678 | - $context['topics'][$row['id_topic']]['is_watched'] = true; |
|
| 710 | + if (!empty($row['id_topic'])) { |
|
| 711 | + $context['topics'][$row['id_topic']]['is_watched'] = true; |
|
| 712 | + } |
|
| 679 | 713 | } |
| 680 | 714 | $smcFunc['db_free_result']($request); |
| 681 | 715 | |
@@ -699,8 +733,7 @@ discard block |
||
| 699 | 733 | $pref = !empty($pref[$user_info['id']]) ? $pref[$user_info['id']] : array(); |
| 700 | 734 | $pref = isset($pref['board_notify_' . $board]) ? $pref['board_notify_' . $board] : (!empty($pref['board_notify']) ? $pref['board_notify'] : 0); |
| 701 | 735 | $context['board_notification_mode'] = !$context['is_marked_notify'] ? 1 : ($pref & 0x02 ? 3 : ($pref & 0x01 ? 2 : 1)); |
| 702 | - } |
|
| 703 | - else |
|
| 736 | + } else |
|
| 704 | 737 | { |
| 705 | 738 | $context['is_marked_notify'] = false; |
| 706 | 739 | $context['board_notification_mode'] = 1; |
@@ -713,23 +746,27 @@ discard block |
||
| 713 | 746 | $context['becomesUnapproved'] = !empty($_SESSION['becomesUnapproved']) ? true : false; |
| 714 | 747 | |
| 715 | 748 | // Don't want to show this forever... |
| 716 | - if ($context['becomesUnapproved']) |
|
| 717 | - unset($_SESSION['becomesUnapproved']); |
|
| 749 | + if ($context['becomesUnapproved']) { |
|
| 750 | + unset($_SESSION['becomesUnapproved']); |
|
| 751 | + } |
|
| 718 | 752 | |
| 719 | 753 | // Build the message index button array. |
| 720 | 754 | $context['normal_buttons'] = array(); |
| 721 | 755 | |
| 722 | - if ($context['can_post_new']) |
|
| 723 | - $context['normal_buttons']['new_topic'] = array('text' => 'new_topic', 'image' => 'new_topic.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0', 'active' => true); |
|
| 756 | + if ($context['can_post_new']) { |
|
| 757 | + $context['normal_buttons']['new_topic'] = array('text' => 'new_topic', 'image' => 'new_topic.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0', 'active' => true); |
|
| 758 | + } |
|
| 724 | 759 | |
| 725 | - if ($context['can_post_poll']) |
|
| 726 | - $context['normal_buttons']['post_poll'] = array('text' => 'new_poll', 'image' => 'new_poll.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll'); |
|
| 760 | + if ($context['can_post_poll']) { |
|
| 761 | + $context['normal_buttons']['post_poll'] = array('text' => 'new_poll', 'image' => 'new_poll.png', 'lang' => true, 'url' => $scripturl . '?action=post;board=' . $context['current_board'] . '.0;poll'); |
|
| 762 | + } |
|
| 727 | 763 | |
| 728 | - if (!$context['user']['is_logged']) |
|
| 729 | - $context['normal_buttons']['markread'] = array('text' => 'mark_read_short', 'image' => 'markread.png', 'lang' => true, 'custom' => 'data-confirm="' . $txt['are_sure_mark_read'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 764 | + if (!$context['user']['is_logged']) { |
|
| 765 | + $context['normal_buttons']['markread'] = array('text' => 'mark_read_short', 'image' => 'markread.png', 'lang' => true, 'custom' => 'data-confirm="' . $txt['are_sure_mark_read'] . '"', 'class' => 'you_sure', 'url' => $scripturl . '?action=markasread;sa=board;board=' . $context['current_board'] . '.0;' . $context['session_var'] . '=' . $context['session_id']); |
|
| 766 | + } |
|
| 730 | 767 | |
| 731 | - if ($context['can_mark_notify']) |
|
| 732 | - $context['normal_buttons']['notify'] = array( |
|
| 768 | + if ($context['can_mark_notify']) { |
|
| 769 | + $context['normal_buttons']['notify'] = array( |
|
| 733 | 770 | 'lang' => true, |
| 734 | 771 | 'text' => 'notify_board_' . $context['board_notification_mode'], |
| 735 | 772 | 'sub_buttons' => array( |
@@ -747,6 +784,7 @@ discard block |
||
| 747 | 784 | ), |
| 748 | 785 | ), |
| 749 | 786 | ); |
| 787 | + } |
|
| 750 | 788 | |
| 751 | 789 | // Javascript for inline editing. |
| 752 | 790 | loadJavaScriptFile('topic.js', array('defer' => false), 'smf_topic'); |
@@ -768,18 +806,21 @@ discard block |
||
| 768 | 806 | checkSession('request'); |
| 769 | 807 | |
| 770 | 808 | // Lets go straight to the restore area. |
| 771 | - if (isset($_REQUEST['qaction']) && $_REQUEST['qaction'] == 'restore' && !empty($_REQUEST['topics'])) |
|
| 772 | - redirectexit('action=restoretopic;topics=' . implode(',', $_REQUEST['topics']) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 809 | + if (isset($_REQUEST['qaction']) && $_REQUEST['qaction'] == 'restore' && !empty($_REQUEST['topics'])) { |
|
| 810 | + redirectexit('action=restoretopic;topics=' . implode(',', $_REQUEST['topics']) . ';' . $context['session_var'] . '=' . $context['session_id']); |
|
| 811 | + } |
|
| 773 | 812 | |
| 774 | - if (isset($_SESSION['topicseen_cache'])) |
|
| 775 | - $_SESSION['topicseen_cache'] = array(); |
|
| 813 | + if (isset($_SESSION['topicseen_cache'])) { |
|
| 814 | + $_SESSION['topicseen_cache'] = array(); |
|
| 815 | + } |
|
| 776 | 816 | |
| 777 | 817 | // This is going to be needed to send off the notifications and for updateLastMessages(). |
| 778 | 818 | require_once($sourcedir . '/Subs-Post.php'); |
| 779 | 819 | |
| 780 | 820 | // Remember the last board they moved things to. |
| 781 | - if (isset($_REQUEST['move_to'])) |
|
| 782 | - $_SESSION['move_to_topic'] = $_REQUEST['move_to']; |
|
| 821 | + if (isset($_REQUEST['move_to'])) { |
|
| 822 | + $_SESSION['move_to_topic'] = $_REQUEST['move_to']; |
|
| 823 | + } |
|
| 783 | 824 | |
| 784 | 825 | // Only a few possible actions. |
| 785 | 826 | $possibleActions = array(); |
@@ -799,8 +840,7 @@ discard block |
||
| 799 | 840 | ); |
| 800 | 841 | |
| 801 | 842 | $redirect_url = 'board=' . $board . '.' . $_REQUEST['start']; |
| 802 | - } |
|
| 803 | - else |
|
| 843 | + } else |
|
| 804 | 844 | { |
| 805 | 845 | /** |
| 806 | 846 | * @todo Ugly. There's no getting around this, is there? |
@@ -818,8 +858,7 @@ discard block |
||
| 818 | 858 | if (!empty($board)) |
| 819 | 859 | { |
| 820 | 860 | $boards_can['post_new'] = array_diff(boardsAllowedTo('post_new'), array($board)); |
| 821 | - } |
|
| 822 | - else |
|
| 861 | + } else |
|
| 823 | 862 | { |
| 824 | 863 | $boards_can['post_new'] = boardsAllowedTo('post_new'); |
| 825 | 864 | } |
@@ -830,55 +869,67 @@ discard block |
||
| 830 | 869 | } |
| 831 | 870 | } |
| 832 | 871 | |
| 833 | - if (!$user_info['is_guest']) |
|
| 834 | - $possibleActions[] = 'markread'; |
|
| 835 | - if (!empty($boards_can['make_sticky'])) |
|
| 836 | - $possibleActions[] = 'sticky'; |
|
| 837 | - if (!empty($boards_can['move_any']) || !empty($boards_can['move_own'])) |
|
| 838 | - $possibleActions[] = 'move'; |
|
| 839 | - if (!empty($boards_can['remove_any']) || !empty($boards_can['remove_own'])) |
|
| 840 | - $possibleActions[] = 'remove'; |
|
| 841 | - if (!empty($boards_can['lock_any']) || !empty($boards_can['lock_own'])) |
|
| 842 | - $possibleActions[] = 'lock'; |
|
| 843 | - if (!empty($boards_can['merge_any'])) |
|
| 844 | - $possibleActions[] = 'merge'; |
|
| 845 | - if (!empty($boards_can['approve_posts'])) |
|
| 846 | - $possibleActions[] = 'approve'; |
|
| 872 | + if (!$user_info['is_guest']) { |
|
| 873 | + $possibleActions[] = 'markread'; |
|
| 874 | + } |
|
| 875 | + if (!empty($boards_can['make_sticky'])) { |
|
| 876 | + $possibleActions[] = 'sticky'; |
|
| 877 | + } |
|
| 878 | + if (!empty($boards_can['move_any']) || !empty($boards_can['move_own'])) { |
|
| 879 | + $possibleActions[] = 'move'; |
|
| 880 | + } |
|
| 881 | + if (!empty($boards_can['remove_any']) || !empty($boards_can['remove_own'])) { |
|
| 882 | + $possibleActions[] = 'remove'; |
|
| 883 | + } |
|
| 884 | + if (!empty($boards_can['lock_any']) || !empty($boards_can['lock_own'])) { |
|
| 885 | + $possibleActions[] = 'lock'; |
|
| 886 | + } |
|
| 887 | + if (!empty($boards_can['merge_any'])) { |
|
| 888 | + $possibleActions[] = 'merge'; |
|
| 889 | + } |
|
| 890 | + if (!empty($boards_can['approve_posts'])) { |
|
| 891 | + $possibleActions[] = 'approve'; |
|
| 892 | + } |
|
| 847 | 893 | |
| 848 | 894 | // Two methods: $_REQUEST['actions'] (id_topic => action), and $_REQUEST['topics'] and $_REQUEST['qaction']. |
| 849 | 895 | // (if action is 'move', $_REQUEST['move_to'] or $_REQUEST['move_tos'][$topic] is used.) |
| 850 | 896 | if (!empty($_REQUEST['topics'])) |
| 851 | 897 | { |
| 852 | 898 | // If the action isn't valid, just quit now. |
| 853 | - if (empty($_REQUEST['qaction']) || !in_array($_REQUEST['qaction'], $possibleActions)) |
|
| 854 | - redirectexit($redirect_url); |
|
| 899 | + if (empty($_REQUEST['qaction']) || !in_array($_REQUEST['qaction'], $possibleActions)) { |
|
| 900 | + redirectexit($redirect_url); |
|
| 901 | + } |
|
| 855 | 902 | |
| 856 | 903 | // Merge requires all topics as one parameter and can be done at once. |
| 857 | 904 | if ($_REQUEST['qaction'] == 'merge') |
| 858 | 905 | { |
| 859 | 906 | // Merge requires at least two topics. |
| 860 | - if (empty($_REQUEST['topics']) || count($_REQUEST['topics']) < 2) |
|
| 861 | - redirectexit($redirect_url); |
|
| 907 | + if (empty($_REQUEST['topics']) || count($_REQUEST['topics']) < 2) { |
|
| 908 | + redirectexit($redirect_url); |
|
| 909 | + } |
|
| 862 | 910 | |
| 863 | 911 | require_once($sourcedir . '/SplitTopics.php'); |
| 864 | 912 | return MergeExecute($_REQUEST['topics']); |
| 865 | 913 | } |
| 866 | 914 | |
| 867 | 915 | // Just convert to the other method, to make it easier. |
| 868 | - foreach ($_REQUEST['topics'] as $topic) |
|
| 869 | - $_REQUEST['actions'][(int) $topic] = $_REQUEST['qaction']; |
|
| 916 | + foreach ($_REQUEST['topics'] as $topic) { |
|
| 917 | + $_REQUEST['actions'][(int) $topic] = $_REQUEST['qaction']; |
|
| 918 | + } |
|
| 870 | 919 | } |
| 871 | 920 | |
| 872 | 921 | // Weird... how'd you get here? |
| 873 | - if (empty($_REQUEST['actions'])) |
|
| 874 | - redirectexit($redirect_url); |
|
| 922 | + if (empty($_REQUEST['actions'])) { |
|
| 923 | + redirectexit($redirect_url); |
|
| 924 | + } |
|
| 875 | 925 | |
| 876 | 926 | // Validate each action. |
| 877 | 927 | $temp = array(); |
| 878 | 928 | foreach ($_REQUEST['actions'] as $topic => $action) |
| 879 | 929 | { |
| 880 | - if (in_array($action, $possibleActions)) |
|
| 881 | - $temp[(int) $topic] = $action; |
|
| 930 | + if (in_array($action, $possibleActions)) { |
|
| 931 | + $temp[(int) $topic] = $action; |
|
| 932 | + } |
|
| 882 | 933 | } |
| 883 | 934 | $_REQUEST['actions'] = $temp; |
| 884 | 935 | |
@@ -899,27 +950,31 @@ discard block |
||
| 899 | 950 | { |
| 900 | 951 | if (!empty($board)) |
| 901 | 952 | { |
| 902 | - if ($row['id_board'] != $board || ($modSettings['postmod_active'] && !$row['approved'] && !allowedTo('approve_posts'))) |
|
| 903 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 904 | - } |
|
| 905 | - else |
|
| 953 | + if ($row['id_board'] != $board || ($modSettings['postmod_active'] && !$row['approved'] && !allowedTo('approve_posts'))) { |
|
| 954 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 955 | + } |
|
| 956 | + } else |
|
| 906 | 957 | { |
| 907 | 958 | // Don't allow them to act on unapproved posts they can't see... |
| 908 | - if ($modSettings['postmod_active'] && !$row['approved'] && !in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])) |
|
| 909 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 959 | + if ($modSettings['postmod_active'] && !$row['approved'] && !in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])) { |
|
| 960 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 961 | + } |
|
| 910 | 962 | // Goodness, this is fun. We need to validate the action. |
| 911 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'sticky' && !in_array(0, $boards_can['make_sticky']) && !in_array($row['id_board'], $boards_can['make_sticky'])) |
|
| 912 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 913 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'move' && !in_array(0, $boards_can['move_any']) && !in_array($row['id_board'], $boards_can['move_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['move_own']) && !in_array($row['id_board'], $boards_can['move_own'])))) |
|
| 914 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 915 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'remove' && !in_array(0, $boards_can['remove_any']) && !in_array($row['id_board'], $boards_can['remove_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['remove_own']) && !in_array($row['id_board'], $boards_can['remove_own'])))) |
|
| 916 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 963 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'sticky' && !in_array(0, $boards_can['make_sticky']) && !in_array($row['id_board'], $boards_can['make_sticky'])) { |
|
| 964 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 965 | + } elseif ($_REQUEST['actions'][$row['id_topic']] == 'move' && !in_array(0, $boards_can['move_any']) && !in_array($row['id_board'], $boards_can['move_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['move_own']) && !in_array($row['id_board'], $boards_can['move_own'])))) { |
|
| 966 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 967 | + } elseif ($_REQUEST['actions'][$row['id_topic']] == 'remove' && !in_array(0, $boards_can['remove_any']) && !in_array($row['id_board'], $boards_can['remove_any']) && ($row['id_member_started'] != $user_info['id'] || (!in_array(0, $boards_can['remove_own']) && !in_array($row['id_board'], $boards_can['remove_own'])))) { |
|
| 968 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 969 | + } |
|
| 917 | 970 | // @todo $locked is not set, what are you trying to do? (taking the change it is supposed to be $row['locked']) |
| 918 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'lock' && !in_array(0, $boards_can['lock_any']) && !in_array($row['id_board'], $boards_can['lock_any']) && ($row['id_member_started'] != $user_info['id'] || $row['locked'] == 1 || (!in_array(0, $boards_can['lock_own']) && !in_array($row['id_board'], $boards_can['lock_own'])))) |
|
| 919 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 971 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'lock' && !in_array(0, $boards_can['lock_any']) && !in_array($row['id_board'], $boards_can['lock_any']) && ($row['id_member_started'] != $user_info['id'] || $row['locked'] == 1 || (!in_array(0, $boards_can['lock_own']) && !in_array($row['id_board'], $boards_can['lock_own'])))) { |
|
| 972 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 973 | + } |
|
| 920 | 974 | // If the topic is approved then you need permission to approve the posts within. |
| 921 | - elseif ($_REQUEST['actions'][$row['id_topic']] == 'approve' && (!$row['unapproved_posts'] || (!in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])))) |
|
| 922 | - unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 975 | + elseif ($_REQUEST['actions'][$row['id_topic']] == 'approve' && (!$row['unapproved_posts'] || (!in_array(0, $boards_can['approve_posts']) && !in_array($row['id_board'], $boards_can['approve_posts'])))) { |
|
| 976 | + unset($_REQUEST['actions'][$row['id_topic']]); |
|
| 977 | + } |
|
| 923 | 978 | } |
| 924 | 979 | } |
| 925 | 980 | $smcFunc['db_free_result']($request); |
@@ -937,11 +992,11 @@ discard block |
||
| 937 | 992 | { |
| 938 | 993 | $topic = (int) $topic; |
| 939 | 994 | |
| 940 | - if ($action == 'markread') |
|
| 941 | - $markCache[] = $topic; |
|
| 942 | - elseif ($action == 'sticky') |
|
| 943 | - $stickyCache[] = $topic; |
|
| 944 | - elseif ($action == 'move') |
|
| 995 | + if ($action == 'markread') { |
|
| 996 | + $markCache[] = $topic; |
|
| 997 | + } elseif ($action == 'sticky') { |
|
| 998 | + $stickyCache[] = $topic; |
|
| 999 | + } elseif ($action == 'move') |
|
| 945 | 1000 | { |
| 946 | 1001 | require_once($sourcedir . '/MoveTopic.php'); |
| 947 | 1002 | moveTopicConcurrence(); |
@@ -949,23 +1004,25 @@ discard block |
||
| 949 | 1004 | // $moveCache[0] is the topic, $moveCache[1] is the board to move to. |
| 950 | 1005 | $moveCache[1][$topic] = (int) (isset($_REQUEST['move_tos'][$topic]) ? $_REQUEST['move_tos'][$topic] : $_REQUEST['move_to']); |
| 951 | 1006 | |
| 952 | - if (empty($moveCache[1][$topic])) |
|
| 953 | - continue; |
|
| 1007 | + if (empty($moveCache[1][$topic])) { |
|
| 1008 | + continue; |
|
| 1009 | + } |
|
| 954 | 1010 | |
| 955 | 1011 | $moveCache[0][] = $topic; |
| 1012 | + } elseif ($action == 'remove') { |
|
| 1013 | + $removeCache[] = $topic; |
|
| 1014 | + } elseif ($action == 'lock') { |
|
| 1015 | + $lockCache[] = $topic; |
|
| 1016 | + } elseif ($action == 'approve') { |
|
| 1017 | + $approveCache[] = $topic; |
|
| 956 | 1018 | } |
| 957 | - elseif ($action == 'remove') |
|
| 958 | - $removeCache[] = $topic; |
|
| 959 | - elseif ($action == 'lock') |
|
| 960 | - $lockCache[] = $topic; |
|
| 961 | - elseif ($action == 'approve') |
|
| 962 | - $approveCache[] = $topic; |
|
| 963 | 1019 | } |
| 964 | 1020 | |
| 965 | - if (empty($board)) |
|
| 966 | - $affectedBoards = array(); |
|
| 967 | - else |
|
| 968 | - $affectedBoards = array($board => array(0, 0)); |
|
| 1021 | + if (empty($board)) { |
|
| 1022 | + $affectedBoards = array(); |
|
| 1023 | + } else { |
|
| 1024 | + $affectedBoards = array($board => array(0, 0)); |
|
| 1025 | + } |
|
| 969 | 1026 | |
| 970 | 1027 | // Do all the stickies... |
| 971 | 1028 | if (!empty($stickyCache)) |
@@ -1025,14 +1082,16 @@ discard block |
||
| 1025 | 1082 | { |
| 1026 | 1083 | $to = $moveCache[1][$row['id_topic']]; |
| 1027 | 1084 | |
| 1028 | - if (empty($to)) |
|
| 1029 | - continue; |
|
| 1085 | + if (empty($to)) { |
|
| 1086 | + continue; |
|
| 1087 | + } |
|
| 1030 | 1088 | |
| 1031 | 1089 | // Does this topic's board count the posts or not? |
| 1032 | 1090 | $countPosts[$row['id_topic']] = empty($row['count_posts']); |
| 1033 | 1091 | |
| 1034 | - if (!isset($moveTos[$to])) |
|
| 1035 | - $moveTos[$to] = array(); |
|
| 1092 | + if (!isset($moveTos[$to])) { |
|
| 1093 | + $moveTos[$to] = array(); |
|
| 1094 | + } |
|
| 1036 | 1095 | |
| 1037 | 1096 | $moveTos[$to][] = $row['id_topic']; |
| 1038 | 1097 | |
@@ -1046,8 +1105,9 @@ discard block |
||
| 1046 | 1105 | require_once($sourcedir . '/MoveTopic.php'); |
| 1047 | 1106 | |
| 1048 | 1107 | // Do the actual moves... |
| 1049 | - foreach ($moveTos as $to => $topics) |
|
| 1050 | - moveTopics($topics, $to); |
|
| 1108 | + foreach ($moveTos as $to => $topics) { |
|
| 1109 | + moveTopics($topics, $to); |
|
| 1110 | + } |
|
| 1051 | 1111 | |
| 1052 | 1112 | // Does the post counts need to be updated? |
| 1053 | 1113 | if (!empty($moveTos)) |
@@ -1096,20 +1156,23 @@ discard block |
||
| 1096 | 1156 | |
| 1097 | 1157 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 1098 | 1158 | { |
| 1099 | - if (!isset($members[$row['id_member']])) |
|
| 1100 | - $members[$row['id_member']] = 0; |
|
| 1159 | + if (!isset($members[$row['id_member']])) { |
|
| 1160 | + $members[$row['id_member']] = 0; |
|
| 1161 | + } |
|
| 1101 | 1162 | |
| 1102 | - if ($topicRecounts[$row['id_topic']] === '+') |
|
| 1103 | - $members[$row['id_member']] += 1; |
|
| 1104 | - else |
|
| 1105 | - $members[$row['id_member']] -= 1; |
|
| 1163 | + if ($topicRecounts[$row['id_topic']] === '+') { |
|
| 1164 | + $members[$row['id_member']] += 1; |
|
| 1165 | + } else { |
|
| 1166 | + $members[$row['id_member']] -= 1; |
|
| 1167 | + } |
|
| 1106 | 1168 | } |
| 1107 | 1169 | |
| 1108 | 1170 | $smcFunc['db_free_result']($request); |
| 1109 | 1171 | |
| 1110 | 1172 | // And now update them member's post counts |
| 1111 | - foreach ($members as $id_member => $post_adj) |
|
| 1112 | - updateMemberData($id_member, array('posts' => 'posts + ' . $post_adj)); |
|
| 1173 | + foreach ($members as $id_member => $post_adj) { |
|
| 1174 | + updateMemberData($id_member, array('posts' => 'posts + ' . $post_adj)); |
|
| 1175 | + } |
|
| 1113 | 1176 | |
| 1114 | 1177 | } |
| 1115 | 1178 | } |
@@ -1189,8 +1252,9 @@ discard block |
||
| 1189 | 1252 | approveTopics($approveCache); |
| 1190 | 1253 | |
| 1191 | 1254 | // Time for some logging! |
| 1192 | - foreach ($approveCache as $topic) |
|
| 1193 | - logAction('approve_topic', array('topic' => $topic, 'member' => $approveCacheMembers[$topic])); |
|
| 1255 | + foreach ($approveCache as $topic) { |
|
| 1256 | + logAction('approve_topic', array('topic' => $topic, 'member' => $approveCacheMembers[$topic])); |
|
| 1257 | + } |
|
| 1194 | 1258 | } |
| 1195 | 1259 | } |
| 1196 | 1260 | |
@@ -1225,8 +1289,7 @@ discard block |
||
| 1225 | 1289 | $lockStatus[$row['id_topic']] = empty($row['locked']); |
| 1226 | 1290 | } |
| 1227 | 1291 | $smcFunc['db_free_result']($result); |
| 1228 | - } |
|
| 1229 | - else |
|
| 1292 | + } else |
|
| 1230 | 1293 | { |
| 1231 | 1294 | $result = $smcFunc['db_query']('', ' |
| 1232 | 1295 | SELECT id_topic, locked, id_board |
@@ -1276,13 +1339,15 @@ discard block |
||
| 1276 | 1339 | ) |
| 1277 | 1340 | ); |
| 1278 | 1341 | $logged_topics = array(); |
| 1279 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 1280 | - $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 1342 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 1343 | + $logged_topics[$row['id_topic']] = $row['unwatched']; |
|
| 1344 | + } |
|
| 1281 | 1345 | $smcFunc['db_free_result']($request); |
| 1282 | 1346 | |
| 1283 | 1347 | $markArray = array(); |
| 1284 | - foreach ($markCache as $topic) |
|
| 1285 | - $markArray[] = array($modSettings['maxMsgID'], $user_info['id'], $topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 1348 | + foreach ($markCache as $topic) { |
|
| 1349 | + $markArray[] = array($modSettings['maxMsgID'], $user_info['id'], $topic, (isset($logged_topics[$topic]) ? $logged_topics[$topic] : 0)); |
|
| 1350 | + } |
|
| 1286 | 1351 | |
| 1287 | 1352 | $smcFunc['db_insert']('replace', |
| 1288 | 1353 | '{db_prefix}log_topics', |
@@ -1295,8 +1360,9 @@ discard block |
||
| 1295 | 1360 | foreach ($moveCache as $topic) |
| 1296 | 1361 | { |
| 1297 | 1362 | // Didn't actually move anything! |
| 1298 | - if (!isset($topic[0])) |
|
| 1299 | - break; |
|
| 1363 | + if (!isset($topic[0])) { |
|
| 1364 | + break; |
|
| 1365 | + } |
|
| 1300 | 1366 | |
| 1301 | 1367 | logAction('move', array('topic' => $topic[0], 'board_from' => $topic[1], 'board_to' => $topic[2])); |
| 1302 | 1368 | sendNotifications($topic[0], 'move'); |
@@ -1318,8 +1384,9 @@ discard block |
||
| 1318 | 1384 | 'calendar_updated' => time(), |
| 1319 | 1385 | )); |
| 1320 | 1386 | |
| 1321 | - if (!empty($affectedBoards)) |
|
| 1322 | - updateLastMessages(array_keys($affectedBoards)); |
|
| 1387 | + if (!empty($affectedBoards)) { |
|
| 1388 | + updateLastMessages(array_keys($affectedBoards)); |
|
| 1389 | + } |
|
| 1323 | 1390 | |
| 1324 | 1391 | redirectexit($redirect_url); |
| 1325 | 1392 | } |
@@ -21,8 +21,9 @@ discard block |
||
| 21 | 21 | * @version 2.1 Beta 4 |
| 22 | 22 | */ |
| 23 | 23 | |
| 24 | -if (!defined('SMF')) |
|
| 24 | +if (!defined('SMF')) { |
|
| 25 | 25 | die('No direct access...'); |
| 26 | +} |
|
| 26 | 27 | |
| 27 | 28 | /** |
| 28 | 29 | * Handling function for generating reports. |
@@ -69,14 +70,15 @@ discard block |
||
| 69 | 70 | ); |
| 70 | 71 | |
| 71 | 72 | $is_first = 0; |
| 72 | - foreach ($context['report_types'] as $k => $temp) |
|
| 73 | - $context['report_types'][$k] = array( |
|
| 73 | + foreach ($context['report_types'] as $k => $temp) { |
|
| 74 | + $context['report_types'][$k] = array( |
|
| 74 | 75 | 'id' => $k, |
| 75 | 76 | 'title' => isset($txt['gr_type_' . $k]) ? $txt['gr_type_' . $k] : $k, |
| 76 | 77 | 'description' => isset($txt['gr_type_desc_' . $k]) ? $txt['gr_type_desc_' . $k] : null, |
| 77 | 78 | 'function' => $temp, |
| 78 | 79 | 'is_first' => $is_first++ == 0, |
| 79 | 80 | ); |
| 81 | + } |
|
| 80 | 82 | |
| 81 | 83 | // If they haven't chosen a report type which is valid, send them off to the report type chooser! |
| 82 | 84 | if (empty($_REQUEST['rt']) || !isset($context['report_types'][$_REQUEST['rt']])) |
@@ -102,8 +104,9 @@ discard block |
||
| 102 | 104 | $context['sub_template'] = $_REQUEST['st']; |
| 103 | 105 | |
| 104 | 106 | // Are we disabling the other layers - print friendly for example? |
| 105 | - if ($reportTemplates[$_REQUEST['st']]['layers'] !== null) |
|
| 106 | - $context['template_layers'] = $reportTemplates[$_REQUEST['st']]['layers']; |
|
| 107 | + if ($reportTemplates[$_REQUEST['st']]['layers'] !== null) { |
|
| 108 | + $context['template_layers'] = $reportTemplates[$_REQUEST['st']]['layers']; |
|
| 109 | + } |
|
| 107 | 110 | } |
| 108 | 111 | |
| 109 | 112 | // Make the page title more descriptive. |
@@ -151,8 +154,9 @@ discard block |
||
| 151 | 154 | ) |
| 152 | 155 | ); |
| 153 | 156 | $moderators = array(); |
| 154 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 155 | - $moderators[$row['id_board']][] = $row['real_name']; |
|
| 157 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 158 | + $moderators[$row['id_board']][] = $row['real_name']; |
|
| 159 | + } |
|
| 156 | 160 | $smcFunc['db_free_result']($request); |
| 157 | 161 | |
| 158 | 162 | // Get every moderator gruop. |
@@ -164,8 +168,9 @@ discard block |
||
| 164 | 168 | ) |
| 165 | 169 | ); |
| 166 | 170 | $moderator_groups = array(); |
| 167 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 168 | - $moderator_groups[$row['id_board']][] = $row['group_name']; |
|
| 171 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 172 | + $moderator_groups[$row['id_board']][] = $row['group_name']; |
|
| 173 | + } |
|
| 169 | 174 | $smcFunc['db_free_result']($request); |
| 170 | 175 | |
| 171 | 176 | // Get all the possible membergroups! |
@@ -176,8 +181,9 @@ discard block |
||
| 176 | 181 | ) |
| 177 | 182 | ); |
| 178 | 183 | $groups = array(-1 => $txt['guest_title'], 0 => $txt['full_member']); |
| 179 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 180 | - $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 184 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 185 | + $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 186 | + } |
|
| 181 | 187 | $smcFunc['db_free_result']($request); |
| 182 | 188 | |
| 183 | 189 | // All the fields we'll show. |
@@ -195,8 +201,9 @@ discard block |
||
| 195 | 201 | 'moderator_groups' => $txt['board_moderator_groups'], |
| 196 | 202 | 'groups' => $txt['board_groups'], |
| 197 | 203 | ); |
| 198 | - if (!empty($modSettings['deny_boards_access'])) |
|
| 199 | - $boardSettings['disallowed_groups'] = $txt['board_disallowed_groups']; |
|
| 204 | + if (!empty($modSettings['deny_boards_access'])) { |
|
| 205 | + $boardSettings['disallowed_groups'] = $txt['board_disallowed_groups']; |
|
| 206 | + } |
|
| 200 | 207 | |
| 201 | 208 | // Do it in columns, it's just easier. |
| 202 | 209 | setKeys('cols'); |
@@ -222,8 +229,9 @@ discard block |
||
| 222 | 229 | newTable($row['name'], '', 'left', 'auto', 'left', 200, 'left'); |
| 223 | 230 | |
| 224 | 231 | $this_boardSettings = $boardSettings; |
| 225 | - if (empty($row['redirect'])) |
|
| 226 | - unset($this_boardSettings['redirect']); |
|
| 232 | + if (empty($row['redirect'])) { |
|
| 233 | + unset($this_boardSettings['redirect']); |
|
| 234 | + } |
|
| 227 | 235 | |
| 228 | 236 | // First off, add in the side key. |
| 229 | 237 | addData($this_boardSettings); |
@@ -250,10 +258,11 @@ discard block |
||
| 250 | 258 | $allowedGroups = explode(',', $row['member_groups']); |
| 251 | 259 | foreach ($allowedGroups as $key => $group) |
| 252 | 260 | { |
| 253 | - if (isset($groups[$group])) |
|
| 254 | - $allowedGroups[$key] = $groups[$group]; |
|
| 255 | - else |
|
| 256 | - unset($allowedGroups[$key]); |
|
| 261 | + if (isset($groups[$group])) { |
|
| 262 | + $allowedGroups[$key] = $groups[$group]; |
|
| 263 | + } else { |
|
| 264 | + unset($allowedGroups[$key]); |
|
| 265 | + } |
|
| 257 | 266 | } |
| 258 | 267 | $boardData['groups'] = implode(', ', $allowedGroups); |
| 259 | 268 | if (!empty($modSettings['deny_boards_access'])) |
@@ -261,16 +270,18 @@ discard block |
||
| 261 | 270 | $disallowedGroups = explode(',', $row['deny_member_groups']); |
| 262 | 271 | foreach ($disallowedGroups as $key => $group) |
| 263 | 272 | { |
| 264 | - if (isset($groups[$group])) |
|
| 265 | - $disallowedGroups[$key] = $groups[$group]; |
|
| 266 | - else |
|
| 267 | - unset($disallowedGroups[$key]); |
|
| 273 | + if (isset($groups[$group])) { |
|
| 274 | + $disallowedGroups[$key] = $groups[$group]; |
|
| 275 | + } else { |
|
| 276 | + unset($disallowedGroups[$key]); |
|
| 277 | + } |
|
| 268 | 278 | } |
| 269 | 279 | $boardData['disallowed_groups'] = implode(', ', $disallowedGroups); |
| 270 | 280 | } |
| 271 | 281 | |
| 272 | - if (empty($row['redirect'])) |
|
| 273 | - unset ($boardData['redirect']); |
|
| 282 | + if (empty($row['redirect'])) { |
|
| 283 | + unset ($boardData['redirect']); |
|
| 284 | + } |
|
| 274 | 285 | |
| 275 | 286 | // Next add the main data. |
| 276 | 287 | addData($boardData); |
@@ -295,27 +306,31 @@ discard block |
||
| 295 | 306 | |
| 296 | 307 | if (isset($_REQUEST['boards'])) |
| 297 | 308 | { |
| 298 | - if (!is_array($_REQUEST['boards'])) |
|
| 299 | - $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
|
| 300 | - foreach ($_REQUEST['boards'] as $k => $dummy) |
|
| 301 | - $_REQUEST['boards'][$k] = (int) $dummy; |
|
| 309 | + if (!is_array($_REQUEST['boards'])) { |
|
| 310 | + $_REQUEST['boards'] = explode(',', $_REQUEST['boards']); |
|
| 311 | + } |
|
| 312 | + foreach ($_REQUEST['boards'] as $k => $dummy) { |
|
| 313 | + $_REQUEST['boards'][$k] = (int) $dummy; |
|
| 314 | + } |
|
| 302 | 315 | |
| 303 | 316 | $board_clause = 'id_board IN ({array_int:boards})'; |
| 317 | + } else { |
|
| 318 | + $board_clause = '1=1'; |
|
| 304 | 319 | } |
| 305 | - else |
|
| 306 | - $board_clause = '1=1'; |
|
| 307 | 320 | |
| 308 | 321 | if (isset($_REQUEST['groups'])) |
| 309 | 322 | { |
| 310 | - if (!is_array($_REQUEST['groups'])) |
|
| 311 | - $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 312 | - foreach ($_REQUEST['groups'] as $k => $dummy) |
|
| 313 | - $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 323 | + if (!is_array($_REQUEST['groups'])) { |
|
| 324 | + $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 325 | + } |
|
| 326 | + foreach ($_REQUEST['groups'] as $k => $dummy) { |
|
| 327 | + $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 328 | + } |
|
| 314 | 329 | |
| 315 | 330 | $group_clause = 'id_group IN ({array_int:groups})'; |
| 331 | + } else { |
|
| 332 | + $group_clause = '1=1'; |
|
| 316 | 333 | } |
| 317 | - else |
|
| 318 | - $group_clause = '1=1'; |
|
| 319 | 334 | |
| 320 | 335 | // Fetch all the board names. |
| 321 | 336 | $request = $smcFunc['db_query']('', ' |
@@ -369,12 +384,14 @@ discard block |
||
| 369 | 384 | 'groups' => isset($_REQUEST['groups']) ? $_REQUEST['groups'] : array(), |
| 370 | 385 | ) |
| 371 | 386 | ); |
| 372 | - if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) |
|
| 373 | - $member_groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 374 | - else |
|
| 375 | - $member_groups = array('col' => ''); |
|
| 376 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 377 | - $member_groups[$row['id_group']] = $row['group_name']; |
|
| 387 | + if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) { |
|
| 388 | + $member_groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 389 | + } else { |
|
| 390 | + $member_groups = array('col' => ''); |
|
| 391 | + } |
|
| 392 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 393 | + $member_groups[$row['id_group']] = $row['group_name']; |
|
| 394 | + } |
|
| 378 | 395 | $smcFunc['db_free_result']($request); |
| 379 | 396 | |
| 380 | 397 | // Make sure that every group is represented - plus in rows! |
@@ -411,12 +428,14 @@ discard block |
||
| 411 | 428 | ); |
| 412 | 429 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 413 | 430 | { |
| 414 | - if (in_array($row['permission'], $disabled_permissions)) |
|
| 415 | - continue; |
|
| 431 | + if (in_array($row['permission'], $disabled_permissions)) { |
|
| 432 | + continue; |
|
| 433 | + } |
|
| 416 | 434 | |
| 417 | - foreach ($boards as $id => $board) |
|
| 418 | - if ($board['profile'] == $row['id_profile']) |
|
| 435 | + foreach ($boards as $id => $board) { |
|
| 436 | + if ($board['profile'] == $row['id_profile']) |
|
| 419 | 437 | $board_permissions[$id][$row['id_group']][$row['permission']] = $row['add_deny']; |
| 438 | + } |
|
| 420 | 439 | |
| 421 | 440 | // Make sure we get every permission. |
| 422 | 441 | if (!isset($permissions[$row['permission']])) |
@@ -451,8 +470,9 @@ discard block |
||
| 451 | 470 | foreach ($member_groups as $id_group => $name) |
| 452 | 471 | { |
| 453 | 472 | // Don't overwrite the key column! |
| 454 | - if ($id_group === 'col') |
|
| 455 | - continue; |
|
| 473 | + if ($id_group === 'col') { |
|
| 474 | + continue; |
|
| 475 | + } |
|
| 456 | 476 | |
| 457 | 477 | $group_permissions = isset($groups[$id_group]) ? $groups[$id_group] : array(); |
| 458 | 478 | |
@@ -474,16 +494,18 @@ discard block |
||
| 474 | 494 | } |
| 475 | 495 | |
| 476 | 496 | // Now actually make the data for the group look right. |
| 477 | - if (empty($curData[$id_group])) |
|
| 478 | - $curData[$id_group] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 479 | - elseif ($curData[$id_group] == 1) |
|
| 480 | - $curData[$id_group] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 481 | - else |
|
| 482 | - $curData[$id_group] = 'x'; |
|
| 497 | + if (empty($curData[$id_group])) { |
|
| 498 | + $curData[$id_group] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 499 | + } elseif ($curData[$id_group] == 1) { |
|
| 500 | + $curData[$id_group] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 501 | + } else { |
|
| 502 | + $curData[$id_group] = 'x'; |
|
| 503 | + } |
|
| 483 | 504 | |
| 484 | 505 | // Embolden those permissions different from global (makes it a lot easier!) |
| 485 | - if (@$board_permissions[0][$id_group][$ID_PERM] != @$group_permissions[$ID_PERM]) |
|
| 486 | - $curData[$id_group] = '<strong>' . $curData[$id_group] . '</strong>'; |
|
| 506 | + if (@$board_permissions[0][$id_group][$ID_PERM] != @$group_permissions[$ID_PERM]) { |
|
| 507 | + $curData[$id_group] = '<strong>' . $curData[$id_group] . '</strong>'; |
|
| 508 | + } |
|
| 487 | 509 | } |
| 488 | 510 | |
| 489 | 511 | // Now add the data for this permission. |
@@ -513,15 +535,17 @@ discard block |
||
| 513 | 535 | ); |
| 514 | 536 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 515 | 537 | { |
| 516 | - if (trim($row['member_groups']) == '') |
|
| 517 | - $groups = array(1); |
|
| 518 | - else |
|
| 519 | - $groups = array_merge(array(1), explode(',', $row['member_groups'])); |
|
| 538 | + if (trim($row['member_groups']) == '') { |
|
| 539 | + $groups = array(1); |
|
| 540 | + } else { |
|
| 541 | + $groups = array_merge(array(1), explode(',', $row['member_groups'])); |
|
| 542 | + } |
|
| 520 | 543 | |
| 521 | - if (trim($row['deny_member_groups']) == '') |
|
| 522 | - $denyGroups = array(); |
|
| 523 | - else |
|
| 524 | - $denyGroups = explode(',', $row['deny_member_groups']); |
|
| 544 | + if (trim($row['deny_member_groups']) == '') { |
|
| 545 | + $denyGroups = array(); |
|
| 546 | + } else { |
|
| 547 | + $denyGroups = explode(',', $row['deny_member_groups']); |
|
| 548 | + } |
|
| 525 | 549 | |
| 526 | 550 | $boards[$row['id_board']] = array( |
| 527 | 551 | 'id' => $row['id_board'], |
@@ -545,8 +569,9 @@ discard block |
||
| 545 | 569 | ); |
| 546 | 570 | |
| 547 | 571 | // Add on the boards! |
| 548 | - foreach ($boards as $board) |
|
| 549 | - $mgSettings['board_' . $board['id']] = $board['name']; |
|
| 572 | + foreach ($boards as $board) { |
|
| 573 | + $mgSettings['board_' . $board['id']] = $board['name']; |
|
| 574 | + } |
|
| 550 | 575 | |
| 551 | 576 | // Add all the membergroup settings, plus we'll be adding in columns! |
| 552 | 577 | setKeys('cols', $mgSettings); |
@@ -591,8 +616,9 @@ discard block |
||
| 591 | 616 | 'icons' => '' |
| 592 | 617 | ), |
| 593 | 618 | ); |
| 594 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 595 | - $rows[] = $row; |
|
| 619 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 620 | + $rows[] = $row; |
|
| 621 | + } |
|
| 596 | 622 | $smcFunc['db_free_result']($request); |
| 597 | 623 | |
| 598 | 624 | foreach ($rows as $row) |
@@ -608,8 +634,9 @@ discard block |
||
| 608 | 634 | ); |
| 609 | 635 | |
| 610 | 636 | // Board permissions. |
| 611 | - foreach ($boards as $board) |
|
| 612 | - $group['board_' . $board['id']] = in_array($row['id_group'], $board['groups']) ? '<span class="success">' . $txt['board_perms_allow'] . '</span>' : (!empty($modSettings['deny_boards_access']) && in_array($row['id_group'], $board['deny_groups']) ? '<span class="alert">' . $txt['board_perms_deny'] . '</span>' : 'x'); |
|
| 637 | + foreach ($boards as $board) { |
|
| 638 | + $group['board_' . $board['id']] = in_array($row['id_group'], $board['groups']) ? '<span class="success">' . $txt['board_perms_allow'] . '</span>' : (!empty($modSettings['deny_boards_access']) && in_array($row['id_group'], $board['deny_groups']) ? '<span class="alert">' . $txt['board_perms_deny'] . '</span>' : 'x'); |
|
| 639 | + } |
|
| 613 | 640 | |
| 614 | 641 | addData($group); |
| 615 | 642 | } |
@@ -629,16 +656,18 @@ discard block |
||
| 629 | 656 | |
| 630 | 657 | if (isset($_REQUEST['groups'])) |
| 631 | 658 | { |
| 632 | - if (!is_array($_REQUEST['groups'])) |
|
| 633 | - $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 634 | - foreach ($_REQUEST['groups'] as $k => $dummy) |
|
| 635 | - $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 659 | + if (!is_array($_REQUEST['groups'])) { |
|
| 660 | + $_REQUEST['groups'] = explode(',', $_REQUEST['groups']); |
|
| 661 | + } |
|
| 662 | + foreach ($_REQUEST['groups'] as $k => $dummy) { |
|
| 663 | + $_REQUEST['groups'][$k] = (int) $dummy; |
|
| 664 | + } |
|
| 636 | 665 | $_REQUEST['groups'] = array_diff($_REQUEST['groups'], array(3)); |
| 637 | 666 | |
| 638 | 667 | $clause = 'id_group IN ({array_int:groups})'; |
| 668 | + } else { |
|
| 669 | + $clause = 'id_group != {int:moderator_group}'; |
|
| 639 | 670 | } |
| 640 | - else |
|
| 641 | - $clause = 'id_group != {int:moderator_group}'; |
|
| 642 | 671 | |
| 643 | 672 | // Get all the possible membergroups, except admin! |
| 644 | 673 | $request = $smcFunc['db_query']('', ' |
@@ -656,12 +685,14 @@ discard block |
||
| 656 | 685 | 'groups' => isset($_REQUEST['groups']) ? $_REQUEST['groups'] : array(), |
| 657 | 686 | ) |
| 658 | 687 | ); |
| 659 | - if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) |
|
| 660 | - $groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 661 | - else |
|
| 662 | - $groups = array('col' => ''); |
|
| 663 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 664 | - $groups[$row['id_group']] = $row['group_name']; |
|
| 688 | + if (!isset($_REQUEST['groups']) || in_array(-1, $_REQUEST['groups']) || in_array(0, $_REQUEST['groups'])) { |
|
| 689 | + $groups = array('col' => '', -1 => $txt['membergroups_guests'], 0 => $txt['membergroups_members']); |
|
| 690 | + } else { |
|
| 691 | + $groups = array('col' => ''); |
|
| 692 | + } |
|
| 693 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 694 | + $groups[$row['id_group']] = $row['group_name']; |
|
| 695 | + } |
|
| 665 | 696 | $smcFunc['db_free_result']($request); |
| 666 | 697 | |
| 667 | 698 | // Make sure that every group is represented! |
@@ -685,8 +716,9 @@ discard block |
||
| 685 | 716 | $disabled_permissions[] = 'calendar_edit_own'; |
| 686 | 717 | $disabled_permissions[] = 'calendar_edit_any'; |
| 687 | 718 | } |
| 688 | - if (empty($modSettings['warning_settings']) || $modSettings['warning_settings'][0] == 0) |
|
| 689 | - $disabled_permissions[] = 'issue_warning'; |
|
| 719 | + if (empty($modSettings['warning_settings']) || $modSettings['warning_settings'][0] == 0) { |
|
| 720 | + $disabled_permissions[] = 'issue_warning'; |
|
| 721 | + } |
|
| 690 | 722 | |
| 691 | 723 | call_integration_hook('integrate_reports_groupperm', array(&$disabled_permissions)); |
| 692 | 724 | |
@@ -707,15 +739,17 @@ discard block |
||
| 707 | 739 | $curData = array(); |
| 708 | 740 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 709 | 741 | { |
| 710 | - if (in_array($row['permission'], $disabled_permissions)) |
|
| 711 | - continue; |
|
| 742 | + if (in_array($row['permission'], $disabled_permissions)) { |
|
| 743 | + continue; |
|
| 744 | + } |
|
| 712 | 745 | |
| 713 | 746 | // If this is a new permission flush the last row. |
| 714 | 747 | if ($row['permission'] != $lastPermission) |
| 715 | 748 | { |
| 716 | 749 | // Send the data! |
| 717 | - if ($lastPermission !== null) |
|
| 718 | - addData($curData); |
|
| 750 | + if ($lastPermission !== null) { |
|
| 751 | + addData($curData); |
|
| 752 | + } |
|
| 719 | 753 | |
| 720 | 754 | // Add the permission name in the left column. |
| 721 | 755 | $curData = array('col' => isset($txt['group_perms_name_' . $row['permission']]) ? $txt['group_perms_name_' . $row['permission']] : $row['permission']); |
@@ -724,10 +758,11 @@ discard block |
||
| 724 | 758 | } |
| 725 | 759 | |
| 726 | 760 | // Good stuff - add the permission to the list! |
| 727 | - if ($row['add_deny']) |
|
| 728 | - $curData[$row['id_group']] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 729 | - else |
|
| 730 | - $curData[$row['id_group']] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 761 | + if ($row['add_deny']) { |
|
| 762 | + $curData[$row['id_group']] = '<span style="color: darkgreen;">' . $txt['board_perms_allow'] . '</span>'; |
|
| 763 | + } else { |
|
| 764 | + $curData[$row['id_group']] = '<span class="red">' . $txt['board_perms_deny'] . '</span>'; |
|
| 765 | + } |
|
| 731 | 766 | } |
| 732 | 767 | $smcFunc['db_free_result']($request); |
| 733 | 768 | |
@@ -757,8 +792,9 @@ discard block |
||
| 757 | 792 | ) |
| 758 | 793 | ); |
| 759 | 794 | $boards = array(); |
| 760 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 761 | - $boards[$row['id_board']] = $row['name']; |
|
| 795 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 796 | + $boards[$row['id_board']] = $row['name']; |
|
| 797 | + } |
|
| 762 | 798 | $smcFunc['db_free_result']($request); |
| 763 | 799 | |
| 764 | 800 | // Get every moderator. |
@@ -790,12 +826,14 @@ discard block |
||
| 790 | 826 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 791 | 827 | { |
| 792 | 828 | // Either we don't have them as a moderator at all or at least not as a moderator of this board |
| 793 | - if (!array_key_exists($row['id_member'], $moderators) || !in_array($row['id_board'], $moderators[$row['id_member']])) |
|
| 794 | - $moderators[$row['id_member']][] = $row['id_board']; |
|
| 829 | + if (!array_key_exists($row['id_member'], $moderators) || !in_array($row['id_board'], $moderators[$row['id_member']])) { |
|
| 830 | + $moderators[$row['id_member']][] = $row['id_board']; |
|
| 831 | + } |
|
| 795 | 832 | |
| 796 | 833 | // We don't have them listed as a moderator yet |
| 797 | - if (!array_key_exists($row['id_member'], $local_mods)) |
|
| 798 | - $local_mods[$row['id_member']] = $row['id_member']; |
|
| 834 | + if (!array_key_exists($row['id_member'], $local_mods)) { |
|
| 835 | + $local_mods[$row['id_member']] = $row['id_member']; |
|
| 836 | + } |
|
| 799 | 837 | } |
| 800 | 838 | |
| 801 | 839 | // Get a list of global moderators (i.e. members with moderation powers). |
@@ -808,8 +846,9 @@ discard block |
||
| 808 | 846 | $allStaff = array_unique($allStaff); |
| 809 | 847 | |
| 810 | 848 | // This is a bit of a cop out - but we're protecting their forum, really! |
| 811 | - if (count($allStaff) > 300) |
|
| 812 | - fatal_lang_error('report_error_too_many_staff'); |
|
| 849 | + if (count($allStaff) > 300) { |
|
| 850 | + fatal_lang_error('report_error_too_many_staff'); |
|
| 851 | + } |
|
| 813 | 852 | |
| 814 | 853 | // Get all the possible membergroups! |
| 815 | 854 | $request = $smcFunc['db_query']('', ' |
@@ -819,8 +858,9 @@ discard block |
||
| 819 | 858 | ) |
| 820 | 859 | ); |
| 821 | 860 | $groups = array(0 => $txt['full_member']); |
| 822 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 823 | - $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 861 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 862 | + $groups[$row['id_group']] = empty($row['online_color']) ? $row['group_name'] : '<span style="color: ' . $row['online_color'] . '">' . $row['group_name'] . '</span>'; |
|
| 863 | + } |
|
| 824 | 864 | $smcFunc['db_free_result']($request); |
| 825 | 865 | |
| 826 | 866 | // All the fields we'll show. |
@@ -861,19 +901,20 @@ discard block |
||
| 861 | 901 | ); |
| 862 | 902 | |
| 863 | 903 | // What do they moderate? |
| 864 | - if (in_array($row['id_member'], $global_mods)) |
|
| 865 | - $staffData['moderates'] = '<em>' . $txt['report_staff_all_boards'] . '</em>'; |
|
| 866 | - elseif (isset($moderators[$row['id_member']])) |
|
| 904 | + if (in_array($row['id_member'], $global_mods)) { |
|
| 905 | + $staffData['moderates'] = '<em>' . $txt['report_staff_all_boards'] . '</em>'; |
|
| 906 | + } elseif (isset($moderators[$row['id_member']])) |
|
| 867 | 907 | { |
| 868 | 908 | // Get the names |
| 869 | - foreach ($moderators[$row['id_member']] as $board) |
|
| 870 | - if (isset($boards[$board])) |
|
| 909 | + foreach ($moderators[$row['id_member']] as $board) { |
|
| 910 | + if (isset($boards[$board])) |
|
| 871 | 911 | $staffData['moderates'][] = $boards[$board]; |
| 912 | + } |
|
| 872 | 913 | |
| 873 | 914 | $staffData['moderates'] = implode(', ', $staffData['moderates']); |
| 915 | + } else { |
|
| 916 | + $staffData['moderates'] = '<em>' . $txt['report_staff_no_boards'] . '</em>'; |
|
| 874 | 917 | } |
| 875 | - else |
|
| 876 | - $staffData['moderates'] = '<em>' . $txt['report_staff_no_boards'] . '</em>'; |
|
| 877 | 918 | |
| 878 | 919 | // Next add the main data. |
| 879 | 920 | addData($staffData); |
@@ -901,8 +942,9 @@ discard block |
||
| 901 | 942 | global $context; |
| 902 | 943 | |
| 903 | 944 | // Set the table count if needed. |
| 904 | - if (empty($context['table_count'])) |
|
| 905 | - $context['table_count'] = 0; |
|
| 945 | + if (empty($context['table_count'])) { |
|
| 946 | + $context['table_count'] = 0; |
|
| 947 | + } |
|
| 906 | 948 | |
| 907 | 949 | // Create the table! |
| 908 | 950 | $context['tables'][$context['table_count']] = array( |
@@ -952,16 +994,18 @@ discard block |
||
| 952 | 994 | global $context; |
| 953 | 995 | |
| 954 | 996 | // No tables? Create one even though we are probably already in a bad state! |
| 955 | - if (empty($context['table_count'])) |
|
| 956 | - newTable(); |
|
| 997 | + if (empty($context['table_count'])) { |
|
| 998 | + newTable(); |
|
| 999 | + } |
|
| 957 | 1000 | |
| 958 | 1001 | // Specific table? |
| 959 | - if ($custom_table !== null && !isset($context['tables'][$custom_table])) |
|
| 960 | - return false; |
|
| 961 | - elseif ($custom_table !== null) |
|
| 962 | - $table = $custom_table; |
|
| 963 | - else |
|
| 964 | - $table = $context['current_table']; |
|
| 1002 | + if ($custom_table !== null && !isset($context['tables'][$custom_table])) { |
|
| 1003 | + return false; |
|
| 1004 | + } elseif ($custom_table !== null) { |
|
| 1005 | + $table = $custom_table; |
|
| 1006 | + } else { |
|
| 1007 | + $table = $context['current_table']; |
|
| 1008 | + } |
|
| 965 | 1009 | |
| 966 | 1010 | // If we have keys, sanitise the data... |
| 967 | 1011 | if (!empty($context['keys'])) |
@@ -973,11 +1017,11 @@ discard block |
||
| 973 | 1017 | 'v' => empty($inc_data[$key]) ? $context['tables'][$table]['default_value'] : $inc_data[$key], |
| 974 | 1018 | ); |
| 975 | 1019 | // Special "hack" the adding separators when doing data by column. |
| 976 | - if (substr($key, 0, 5) == '#sep#') |
|
| 977 | - $data[$key]['separator'] = true; |
|
| 1020 | + if (substr($key, 0, 5) == '#sep#') { |
|
| 1021 | + $data[$key]['separator'] = true; |
|
| 1022 | + } |
|
| 978 | 1023 | } |
| 979 | - } |
|
| 980 | - else |
|
| 1024 | + } else |
|
| 981 | 1025 | { |
| 982 | 1026 | $data = $inc_data; |
| 983 | 1027 | foreach ($data as $key => $value) |
@@ -985,8 +1029,9 @@ discard block |
||
| 985 | 1029 | $data[$key] = array( |
| 986 | 1030 | 'v' => $value, |
| 987 | 1031 | ); |
| 988 | - if (substr($key, 0, 5) == '#sep#') |
|
| 989 | - $data[$key]['separator'] = true; |
|
| 1032 | + if (substr($key, 0, 5) == '#sep#') { |
|
| 1033 | + $data[$key]['separator'] = true; |
|
| 1034 | + } |
|
| 990 | 1035 | } |
| 991 | 1036 | } |
| 992 | 1037 | |
@@ -999,8 +1044,9 @@ discard block |
||
| 999 | 1044 | // Otherwise, tricky! |
| 1000 | 1045 | else |
| 1001 | 1046 | { |
| 1002 | - foreach ($data as $key => $item) |
|
| 1003 | - $context['tables'][$table]['data'][$key][] = $item; |
|
| 1047 | + foreach ($data as $key => $item) { |
|
| 1048 | + $context['tables'][$table]['data'][$key][] = $item; |
|
| 1049 | + } |
|
| 1004 | 1050 | } |
| 1005 | 1051 | } |
| 1006 | 1052 | |
@@ -1017,16 +1063,18 @@ discard block |
||
| 1017 | 1063 | global $context; |
| 1018 | 1064 | |
| 1019 | 1065 | // No tables - return? |
| 1020 | - if (empty($context['table_count'])) |
|
| 1021 | - return; |
|
| 1066 | + if (empty($context['table_count'])) { |
|
| 1067 | + return; |
|
| 1068 | + } |
|
| 1022 | 1069 | |
| 1023 | 1070 | // Specific table? |
| 1024 | - if ($custom_table !== null && !isset($context['tables'][$table])) |
|
| 1025 | - return false; |
|
| 1026 | - elseif ($custom_table !== null) |
|
| 1027 | - $table = $custom_table; |
|
| 1028 | - else |
|
| 1029 | - $table = $context['current_table']; |
|
| 1071 | + if ($custom_table !== null && !isset($context['tables'][$table])) { |
|
| 1072 | + return false; |
|
| 1073 | + } elseif ($custom_table !== null) { |
|
| 1074 | + $table = $custom_table; |
|
| 1075 | + } else { |
|
| 1076 | + $table = $context['current_table']; |
|
| 1077 | + } |
|
| 1030 | 1078 | |
| 1031 | 1079 | // Plumb in the separator |
| 1032 | 1080 | $context['tables'][$table]['data'][] = array(0 => array( |
@@ -1047,8 +1095,9 @@ discard block |
||
| 1047 | 1095 | { |
| 1048 | 1096 | global $context; |
| 1049 | 1097 | |
| 1050 | - if (empty($context['tables'])) |
|
| 1051 | - return; |
|
| 1098 | + if (empty($context['tables'])) { |
|
| 1099 | + return; |
|
| 1100 | + } |
|
| 1052 | 1101 | |
| 1053 | 1102 | // Loop through each table counting up some basic values, to help with the templating. |
| 1054 | 1103 | foreach ($context['tables'] as $id => $table) |
@@ -1059,12 +1108,13 @@ discard block |
||
| 1059 | 1108 | $context['tables'][$id]['column_count'] = count($curElement); |
| 1060 | 1109 | |
| 1061 | 1110 | // Work out the rough width - for templates like the print template. Without this we might get funny tables. |
| 1062 | - if ($table['shading']['left'] && $table['width']['shaded'] != 'auto' && $table['width']['normal'] != 'auto') |
|
| 1063 | - $context['tables'][$id]['max_width'] = $table['width']['shaded'] + ($context['tables'][$id]['column_count'] - 1) * $table['width']['normal']; |
|
| 1064 | - elseif ($table['width']['normal'] != 'auto') |
|
| 1065 | - $context['tables'][$id]['max_width'] = $context['tables'][$id]['column_count'] * $table['width']['normal']; |
|
| 1066 | - else |
|
| 1067 | - $context['tables'][$id]['max_width'] = 'auto'; |
|
| 1111 | + if ($table['shading']['left'] && $table['width']['shaded'] != 'auto' && $table['width']['normal'] != 'auto') { |
|
| 1112 | + $context['tables'][$id]['max_width'] = $table['width']['shaded'] + ($context['tables'][$id]['column_count'] - 1) * $table['width']['normal']; |
|
| 1113 | + } elseif ($table['width']['normal'] != 'auto') { |
|
| 1114 | + $context['tables'][$id]['max_width'] = $context['tables'][$id]['column_count'] * $table['width']['normal']; |
|
| 1115 | + } else { |
|
| 1116 | + $context['tables'][$id]['max_width'] = 'auto'; |
|
| 1117 | + } |
|
| 1068 | 1118 | } |
| 1069 | 1119 | } |
| 1070 | 1120 | |
@@ -1089,10 +1139,11 @@ discard block |
||
| 1089 | 1139 | global $context; |
| 1090 | 1140 | |
| 1091 | 1141 | // Do we want to use the keys of the keys as the keys? :P |
| 1092 | - if ($reverse) |
|
| 1093 | - $context['keys'] = array_flip($keys); |
|
| 1094 | - else |
|
| 1095 | - $context['keys'] = $keys; |
|
| 1142 | + if ($reverse) { |
|
| 1143 | + $context['keys'] = array_flip($keys); |
|
| 1144 | + } else { |
|
| 1145 | + $context['keys'] = $keys; |
|
| 1146 | + } |
|
| 1096 | 1147 | |
| 1097 | 1148 | // Rows or columns? |
| 1098 | 1149 | $context['key_method'] = $method == 'rows' ? 'rows' : 'cols'; |
@@ -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 of more membergroups. |
@@ -31,15 +32,16 @@ discard block |
||
| 31 | 32 | global $smcFunc, $modSettings, $txt; |
| 32 | 33 | |
| 33 | 34 | // Make sure it's an array. |
| 34 | - if (!is_array($groups)) |
|
| 35 | - $groups = array((int) $groups); |
|
| 36 | - else |
|
| 35 | + if (!is_array($groups)) { |
|
| 36 | + $groups = array((int) $groups); |
|
| 37 | + } else |
|
| 37 | 38 | { |
| 38 | 39 | $groups = array_unique($groups); |
| 39 | 40 | |
| 40 | 41 | // Make sure all groups are integer. |
| 41 | - foreach ($groups as $key => $value) |
|
| 42 | - $groups[$key] = (int) $value; |
|
| 42 | + foreach ($groups as $key => $value) { |
|
| 43 | + $groups[$key] = (int) $value; |
|
| 44 | + } |
|
| 43 | 45 | } |
| 44 | 46 | |
| 45 | 47 | // Some groups are protected (guests, administrators, moderators, newbies). |
@@ -56,15 +58,17 @@ discard block |
||
| 56 | 58 | 'is_protected' => 1, |
| 57 | 59 | ) |
| 58 | 60 | ); |
| 59 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 60 | - $protected_groups[] = $row['id_group']; |
|
| 61 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 62 | + $protected_groups[] = $row['id_group']; |
|
| 63 | + } |
|
| 61 | 64 | $smcFunc['db_free_result']($request); |
| 62 | 65 | } |
| 63 | 66 | |
| 64 | 67 | // Make sure they don't delete protected groups! |
| 65 | 68 | $groups = array_diff($groups, array_unique($protected_groups)); |
| 66 | - if (empty($groups)) |
|
| 67 | - return 'no_group_found'; |
|
| 69 | + if (empty($groups)) { |
|
| 70 | + return 'no_group_found'; |
|
| 71 | + } |
|
| 68 | 72 | |
| 69 | 73 | // Make sure they don't try to delete a group attached to a paid subscription. |
| 70 | 74 | $subscriptions = array(); |
@@ -74,13 +78,14 @@ discard block |
||
| 74 | 78 | ORDER BY name'); |
| 75 | 79 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 76 | 80 | { |
| 77 | - if (in_array($row['id_group'], $groups)) |
|
| 78 | - $subscriptions[] = $row['name']; |
|
| 79 | - else |
|
| 81 | + if (in_array($row['id_group'], $groups)) { |
|
| 82 | + $subscriptions[] = $row['name']; |
|
| 83 | + } else |
|
| 80 | 84 | { |
| 81 | 85 | $add_groups = explode(',', $row['add_groups']); |
| 82 | - if (count(array_intersect($add_groups, $groups)) != 0) |
|
| 83 | - $subscriptions[] = $row['name']; |
|
| 86 | + if (count(array_intersect($add_groups, $groups)) != 0) { |
|
| 87 | + $subscriptions[] = $row['name']; |
|
| 88 | + } |
|
| 84 | 89 | } |
| 85 | 90 | } |
| 86 | 91 | $smcFunc['db_free_result']($request); |
@@ -101,8 +106,9 @@ discard block |
||
| 101 | 106 | 'group_list' => $groups, |
| 102 | 107 | ) |
| 103 | 108 | ); |
| 104 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 105 | - logAction('delete_group', array('group' => $row['group_name']), 'admin'); |
|
| 109 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 110 | + logAction('delete_group', array('group' => $row['group_name']), 'admin'); |
|
| 111 | + } |
|
| 106 | 112 | $smcFunc['db_free_result']($request); |
| 107 | 113 | |
| 108 | 114 | call_integration_hook('integrate_delete_membergroups', array($groups)); |
@@ -187,12 +193,14 @@ discard block |
||
| 187 | 193 | ) |
| 188 | 194 | ); |
| 189 | 195 | $updates = array(); |
| 190 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 191 | - $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 196 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 197 | + $updates[$row['additional_groups']][] = $row['id_member']; |
|
| 198 | + } |
|
| 192 | 199 | $smcFunc['db_free_result']($request); |
| 193 | 200 | |
| 194 | - foreach ($updates as $additional_groups => $memberArray) |
|
| 195 | - updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), $groups)))); |
|
| 201 | + foreach ($updates as $additional_groups => $memberArray) { |
|
| 202 | + updateMemberData($memberArray, array('additional_groups' => implode(',', array_diff(explode(',', $additional_groups), $groups)))); |
|
| 203 | + } |
|
| 196 | 204 | |
| 197 | 205 | // No boards can provide access to these membergroups anymore. |
| 198 | 206 | $request = $smcFunc['db_query']('', ' |
@@ -204,12 +212,13 @@ discard block |
||
| 204 | 212 | ) |
| 205 | 213 | ); |
| 206 | 214 | $updates = array(); |
| 207 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 208 | - $updates[$row['member_groups']][] = $row['id_board']; |
|
| 215 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 216 | + $updates[$row['member_groups']][] = $row['id_board']; |
|
| 217 | + } |
|
| 209 | 218 | $smcFunc['db_free_result']($request); |
| 210 | 219 | |
| 211 | - foreach ($updates as $member_groups => $boardArray) |
|
| 212 | - $smcFunc['db_query']('', ' |
|
| 220 | + foreach ($updates as $member_groups => $boardArray) { |
|
| 221 | + $smcFunc['db_query']('', ' |
|
| 213 | 222 | UPDATE {db_prefix}boards |
| 214 | 223 | SET member_groups = {string:member_groups} |
| 215 | 224 | WHERE id_board IN ({array_int:board_lists})', |
@@ -218,6 +227,7 @@ discard block |
||
| 218 | 227 | 'member_groups' => implode(',', array_diff(explode(',', $member_groups), $groups)), |
| 219 | 228 | ) |
| 220 | 229 | ); |
| 230 | + } |
|
| 221 | 231 | |
| 222 | 232 | // Recalculate the post groups, as they likely changed. |
| 223 | 233 | updateStats('postgroups'); |
@@ -225,8 +235,9 @@ discard block |
||
| 225 | 235 | // Make a note of the fact that the cache may be wrong. |
| 226 | 236 | $settings_update = array('settings_updated' => time()); |
| 227 | 237 | // Have we deleted the spider group? |
| 228 | - if (isset($modSettings['spider_group']) && in_array($modSettings['spider_group'], $groups)) |
|
| 229 | - $settings_update['spider_group'] = 0; |
|
| 238 | + if (isset($modSettings['spider_group']) && in_array($modSettings['spider_group'], $groups)) { |
|
| 239 | + $settings_update['spider_group'] = 0; |
|
| 240 | + } |
|
| 230 | 241 | |
| 231 | 242 | updateSettings($settings_update); |
| 232 | 243 | |
@@ -250,22 +261,24 @@ discard block |
||
| 250 | 261 | global $smcFunc, $modSettings, $sourcedir; |
| 251 | 262 | |
| 252 | 263 | // You're getting nowhere without this permission, unless of course you are the group's moderator. |
| 253 | - if (!$permissionCheckDone) |
|
| 254 | - isAllowedTo('manage_membergroups'); |
|
| 264 | + if (!$permissionCheckDone) { |
|
| 265 | + isAllowedTo('manage_membergroups'); |
|
| 266 | + } |
|
| 255 | 267 | |
| 256 | 268 | // Assume something will happen. |
| 257 | 269 | updateSettings(array('settings_updated' => time())); |
| 258 | 270 | |
| 259 | 271 | // Cleaning the input. |
| 260 | - if (!is_array($members)) |
|
| 261 | - $members = array((int) $members); |
|
| 262 | - else |
|
| 272 | + if (!is_array($members)) { |
|
| 273 | + $members = array((int) $members); |
|
| 274 | + } else |
|
| 263 | 275 | { |
| 264 | 276 | $members = array_unique($members); |
| 265 | 277 | |
| 266 | 278 | // Cast the members to integer. |
| 267 | - foreach ($members as $key => $value) |
|
| 268 | - $members[$key] = (int) $value; |
|
| 279 | + foreach ($members as $key => $value) { |
|
| 280 | + $members[$key] = (int) $value; |
|
| 281 | + } |
|
| 269 | 282 | } |
| 270 | 283 | |
| 271 | 284 | // Before we get started, let's check we won't leave the admin group empty! |
@@ -277,14 +290,15 @@ discard block |
||
| 277 | 290 | // Remove any admins if there are too many. |
| 278 | 291 | $non_changing_admins = array_diff(array_keys($admins), $members); |
| 279 | 292 | |
| 280 | - if (empty($non_changing_admins)) |
|
| 281 | - $members = array_diff($members, array_keys($admins)); |
|
| 293 | + if (empty($non_changing_admins)) { |
|
| 294 | + $members = array_diff($members, array_keys($admins)); |
|
| 295 | + } |
|
| 282 | 296 | } |
| 283 | 297 | |
| 284 | 298 | // Just in case. |
| 285 | - if (empty($members)) |
|
| 286 | - return false; |
|
| 287 | - elseif ($groups === null) |
|
| 299 | + if (empty($members)) { |
|
| 300 | + return false; |
|
| 301 | + } elseif ($groups === null) |
|
| 288 | 302 | { |
| 289 | 303 | // Wanna remove all groups from these members? That's easy. |
| 290 | 304 | $smcFunc['db_query']('', ' |
@@ -306,20 +320,21 @@ discard block |
||
| 306 | 320 | updateStats('postgroups', $members); |
| 307 | 321 | |
| 308 | 322 | // Log what just happened. |
| 309 | - foreach ($members as $member) |
|
| 310 | - logAction('removed_all_groups', array('member' => $member), 'admin'); |
|
| 323 | + foreach ($members as $member) { |
|
| 324 | + logAction('removed_all_groups', array('member' => $member), 'admin'); |
|
| 325 | + } |
|
| 311 | 326 | |
| 312 | 327 | return true; |
| 313 | - } |
|
| 314 | - elseif (!is_array($groups)) |
|
| 315 | - $groups = array((int) $groups); |
|
| 316 | - else |
|
| 328 | + } elseif (!is_array($groups)) { |
|
| 329 | + $groups = array((int) $groups); |
|
| 330 | + } else |
|
| 317 | 331 | { |
| 318 | 332 | $groups = array_unique($groups); |
| 319 | 333 | |
| 320 | 334 | // Make sure all groups are integer. |
| 321 | - foreach ($groups as $key => $value) |
|
| 322 | - $groups[$key] = (int) $value; |
|
| 335 | + foreach ($groups as $key => $value) { |
|
| 336 | + $groups[$key] = (int) $value; |
|
| 337 | + } |
|
| 323 | 338 | } |
| 324 | 339 | |
| 325 | 340 | // Fetch a list of groups members cannot be assigned to explicitly, and the group names of the ones we want. |
@@ -335,10 +350,11 @@ discard block |
||
| 335 | 350 | $group_names = array(); |
| 336 | 351 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 337 | 352 | { |
| 338 | - if ($row['min_posts'] != -1) |
|
| 339 | - $implicitGroups[] = $row['id_group']; |
|
| 340 | - else |
|
| 341 | - $group_names[$row['id_group']] = $row['group_name']; |
|
| 353 | + if ($row['min_posts'] != -1) { |
|
| 354 | + $implicitGroups[] = $row['id_group']; |
|
| 355 | + } else { |
|
| 356 | + $group_names[$row['id_group']] = $row['group_name']; |
|
| 357 | + } |
|
| 342 | 358 | } |
| 343 | 359 | $smcFunc['db_free_result']($request); |
| 344 | 360 | |
@@ -357,8 +373,9 @@ discard block |
||
| 357 | 373 | ) |
| 358 | 374 | ); |
| 359 | 375 | $protected_groups = array(1); |
| 360 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 361 | - $protected_groups[] = $row['id_group']; |
|
| 376 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 377 | + $protected_groups[] = $row['id_group']; |
|
| 378 | + } |
|
| 362 | 379 | $smcFunc['db_free_result']($request); |
| 363 | 380 | |
| 364 | 381 | // If you're not an admin yourself, you can't touch protected groups! |
@@ -366,8 +383,9 @@ discard block |
||
| 366 | 383 | } |
| 367 | 384 | |
| 368 | 385 | // Only continue if there are still groups and members left. |
| 369 | - if (empty($groups) || empty($members)) |
|
| 370 | - return false; |
|
| 386 | + if (empty($groups) || empty($members)) { |
|
| 387 | + return false; |
|
| 388 | + } |
|
| 371 | 389 | |
| 372 | 390 | // First, reset those who have this as their primary group - this is the easy one. |
| 373 | 391 | $log_inserts = array(); |
@@ -381,8 +399,9 @@ discard block |
||
| 381 | 399 | 'member_list' => $members, |
| 382 | 400 | ) |
| 383 | 401 | ); |
| 384 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 385 | - $log_inserts[] = array('group' => $group_names[$row['id_group']], 'member' => $row['id_member']); |
|
| 402 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 403 | + $log_inserts[] = array('group' => $group_names[$row['id_group']], 'member' => $row['id_member']); |
|
| 404 | + } |
|
| 386 | 405 | $smcFunc['db_free_result']($request); |
| 387 | 406 | |
| 388 | 407 | $smcFunc['db_query']('', ' |
@@ -414,16 +433,17 @@ discard block |
||
| 414 | 433 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 415 | 434 | { |
| 416 | 435 | // What log entries must we make for this one, eh? |
| 417 | - foreach (explode(',', $row['additional_groups']) as $group) |
|
| 418 | - if (in_array($group, $groups)) |
|
| 436 | + foreach (explode(',', $row['additional_groups']) as $group) { |
|
| 437 | + if (in_array($group, $groups)) |
|
| 419 | 438 | $log_inserts[] = array('group' => $group_names[$group], 'member' => $row['id_member']); |
| 439 | + } |
|
| 420 | 440 | |
| 421 | 441 | $updates[$row['additional_groups']][] = $row['id_member']; |
| 422 | 442 | } |
| 423 | 443 | $smcFunc['db_free_result']($request); |
| 424 | 444 | |
| 425 | - foreach ($updates as $additional_groups => $memberArray) |
|
| 426 | - $smcFunc['db_query']('', ' |
|
| 445 | + foreach ($updates as $additional_groups => $memberArray) { |
|
| 446 | + $smcFunc['db_query']('', ' |
|
| 427 | 447 | UPDATE {db_prefix}members |
| 428 | 448 | SET additional_groups = {string:additional_groups} |
| 429 | 449 | WHERE id_member IN ({array_int:member_list})', |
@@ -432,6 +452,7 @@ discard block |
||
| 432 | 452 | 'additional_groups' => implode(',', array_diff(explode(',', $additional_groups), $groups)), |
| 433 | 453 | ) |
| 434 | 454 | ); |
| 455 | + } |
|
| 435 | 456 | |
| 436 | 457 | // Their post groups may have changed now... |
| 437 | 458 | updateStats('postgroups', $members); |
@@ -440,8 +461,9 @@ discard block |
||
| 440 | 461 | if (!empty($log_inserts) && !empty($modSettings['modlog_enabled'])) |
| 441 | 462 | { |
| 442 | 463 | require_once($sourcedir . '/Logging.php'); |
| 443 | - foreach ($log_inserts as $extra) |
|
| 444 | - logAction('removed_from_group', $extra, 'admin'); |
|
| 464 | + foreach ($log_inserts as $extra) { |
|
| 465 | + logAction('removed_from_group', $extra, 'admin'); |
|
| 466 | + } |
|
| 445 | 467 | } |
| 446 | 468 | |
| 447 | 469 | // Mission successful. |
@@ -477,21 +499,23 @@ discard block |
||
| 477 | 499 | global $smcFunc, $sourcedir; |
| 478 | 500 | |
| 479 | 501 | // Show your licence, but only if it hasn't been done yet. |
| 480 | - if (!$permissionCheckDone) |
|
| 481 | - isAllowedTo('manage_membergroups'); |
|
| 502 | + if (!$permissionCheckDone) { |
|
| 503 | + isAllowedTo('manage_membergroups'); |
|
| 504 | + } |
|
| 482 | 505 | |
| 483 | 506 | // Make sure we don't keep old stuff cached. |
| 484 | 507 | updateSettings(array('settings_updated' => time())); |
| 485 | 508 | |
| 486 | - if (!is_array($members)) |
|
| 487 | - $members = array((int) $members); |
|
| 488 | - else |
|
| 509 | + if (!is_array($members)) { |
|
| 510 | + $members = array((int) $members); |
|
| 511 | + } else |
|
| 489 | 512 | { |
| 490 | 513 | $members = array_unique($members); |
| 491 | 514 | |
| 492 | 515 | // Make sure all members are integer. |
| 493 | - foreach ($members as $key => $value) |
|
| 494 | - $members[$key] = (int) $value; |
|
| 516 | + foreach ($members as $key => $value) { |
|
| 517 | + $members[$key] = (int) $value; |
|
| 518 | + } |
|
| 495 | 519 | } |
| 496 | 520 | $group = (int) $group; |
| 497 | 521 | |
@@ -508,20 +532,23 @@ discard block |
||
| 508 | 532 | $group_names = array(); |
| 509 | 533 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 510 | 534 | { |
| 511 | - if ($row['min_posts'] != -1) |
|
| 512 | - $implicitGroups[] = $row['id_group']; |
|
| 513 | - else |
|
| 514 | - $group_names[$row['id_group']] = $row['group_name']; |
|
| 535 | + if ($row['min_posts'] != -1) { |
|
| 536 | + $implicitGroups[] = $row['id_group']; |
|
| 537 | + } else { |
|
| 538 | + $group_names[$row['id_group']] = $row['group_name']; |
|
| 539 | + } |
|
| 515 | 540 | } |
| 516 | 541 | $smcFunc['db_free_result']($request); |
| 517 | 542 | |
| 518 | 543 | // Sorry, you can't join an implicit group. |
| 519 | - if (in_array($group, $implicitGroups) || empty($members)) |
|
| 520 | - return false; |
|
| 544 | + if (in_array($group, $implicitGroups) || empty($members)) { |
|
| 545 | + return false; |
|
| 546 | + } |
|
| 521 | 547 | |
| 522 | 548 | // Only admins can add admins... |
| 523 | - if (!allowedTo('admin_forum') && $group == 1) |
|
| 524 | - return false; |
|
| 549 | + if (!allowedTo('admin_forum') && $group == 1) { |
|
| 550 | + return false; |
|
| 551 | + } |
|
| 525 | 552 | // ... and assign protected groups! |
| 526 | 553 | elseif (!allowedTo('admin_forum') && !$ignoreProtected) |
| 527 | 554 | { |
@@ -539,13 +566,14 @@ discard block |
||
| 539 | 566 | $smcFunc['db_free_result']($request); |
| 540 | 567 | |
| 541 | 568 | // Is it protected? |
| 542 | - if ($is_protected == 1) |
|
| 543 | - return false; |
|
| 569 | + if ($is_protected == 1) { |
|
| 570 | + return false; |
|
| 571 | + } |
|
| 544 | 572 | } |
| 545 | 573 | |
| 546 | 574 | // Do the actual updates. |
| 547 | - if ($type == 'only_additional') |
|
| 548 | - $smcFunc['db_query']('', ' |
|
| 575 | + if ($type == 'only_additional') { |
|
| 576 | + $smcFunc['db_query']('', ' |
|
| 549 | 577 | UPDATE {db_prefix}members |
| 550 | 578 | SET additional_groups = CASE WHEN additional_groups = {string:blank_string} THEN {string:id_group_string} ELSE CONCAT(additional_groups, {string:id_group_string_extend}) END |
| 551 | 579 | WHERE id_member IN ({array_int:member_list}) |
@@ -559,8 +587,8 @@ discard block |
||
| 559 | 587 | 'blank_string' => '', |
| 560 | 588 | ) |
| 561 | 589 | ); |
| 562 | - elseif ($type == 'only_primary' || $type == 'force_primary') |
|
| 563 | - $smcFunc['db_query']('', ' |
|
| 590 | + } elseif ($type == 'only_primary' || $type == 'force_primary') { |
|
| 591 | + $smcFunc['db_query']('', ' |
|
| 564 | 592 | UPDATE {db_prefix}members |
| 565 | 593 | SET id_group = {int:id_group} |
| 566 | 594 | WHERE id_member IN ({array_int:member_list})' . ($type == 'force_primary' ? '' : ' |
@@ -572,8 +600,8 @@ discard block |
||
| 572 | 600 | 'regular_group' => 0, |
| 573 | 601 | ) |
| 574 | 602 | ); |
| 575 | - elseif ($type == 'auto') |
|
| 576 | - $smcFunc['db_query']('', ' |
|
| 603 | + } elseif ($type == 'auto') { |
|
| 604 | + $smcFunc['db_query']('', ' |
|
| 577 | 605 | UPDATE {db_prefix}members |
| 578 | 606 | SET |
| 579 | 607 | id_group = CASE WHEN id_group = {int:regular_group} THEN {int:id_group} ELSE id_group END, |
@@ -592,9 +620,11 @@ discard block |
||
| 592 | 620 | 'id_group_string_extend' => ',' . $group, |
| 593 | 621 | ) |
| 594 | 622 | ); |
| 623 | + } |
|
| 595 | 624 | // Ack!!? What happened? |
| 596 | - else |
|
| 597 | - trigger_error('addMembersToGroup(): Unknown type \'' . $type . '\'', E_USER_WARNING); |
|
| 625 | + else { |
|
| 626 | + trigger_error('addMembersToGroup(): Unknown type \'' . $type . '\'', E_USER_WARNING); |
|
| 627 | + } |
|
| 598 | 628 | |
| 599 | 629 | call_integration_hook('integrate_add_members_to_group', array($members, $group, &$group_names)); |
| 600 | 630 | |
@@ -603,8 +633,9 @@ discard block |
||
| 603 | 633 | |
| 604 | 634 | // Log the data. |
| 605 | 635 | require_once($sourcedir . '/Logging.php'); |
| 606 | - foreach ($members as $member) |
|
| 607 | - logAction('added_to_group', array('group' => $group_names[$group], 'member' => $member), 'admin'); |
|
| 636 | + foreach ($members as $member) { |
|
| 637 | + logAction('added_to_group', array('group' => $group_names[$group], 'member' => $member), 'admin'); |
|
| 638 | + } |
|
| 608 | 639 | |
| 609 | 640 | return true; |
| 610 | 641 | } |
@@ -632,8 +663,9 @@ discard block |
||
| 632 | 663 | ) |
| 633 | 664 | ); |
| 634 | 665 | $members = array(); |
| 635 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 636 | - $members[$row['id_member']] = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 666 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 667 | + $members[$row['id_member']] = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 668 | + } |
|
| 637 | 669 | $smcFunc['db_free_result']($request); |
| 638 | 670 | |
| 639 | 671 | // If there are more than $limit members, add a 'more' link. |
@@ -641,10 +673,10 @@ discard block |
||
| 641 | 673 | { |
| 642 | 674 | array_pop($members); |
| 643 | 675 | return true; |
| 676 | + } else { |
|
| 677 | + return false; |
|
| 678 | + } |
|
| 644 | 679 | } |
| 645 | - else |
|
| 646 | - return false; |
|
| 647 | -} |
|
| 648 | 680 | |
| 649 | 681 | /** |
| 650 | 682 | * Retrieve a list of (visible) membergroups used by the cache. |
@@ -669,8 +701,9 @@ discard block |
||
| 669 | 701 | ) |
| 670 | 702 | ); |
| 671 | 703 | $groupCache = array(); |
| 672 | - while ($row = $smcFunc['db_fetch_assoc']($request)) |
|
| 673 | - $groupCache[] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_group'] . '" ' . ($row['online_color'] ? 'style="color: ' . $row['online_color'] . '"' : '') . '>' . $row['group_name'] . '</a>'; |
|
| 704 | + while ($row = $smcFunc['db_fetch_assoc']($request)) { |
|
| 705 | + $groupCache[] = '<a href="' . $scripturl . '?action=groups;sa=members;group=' . $row['id_group'] . '" ' . ($row['online_color'] ? 'style="color: ' . $row['online_color'] . '"' : '') . '>' . $row['group_name'] . '</a>'; |
|
| 706 | + } |
|
| 674 | 707 | $smcFunc['db_free_result']($request); |
| 675 | 708 | |
| 676 | 709 | return array( |
@@ -716,8 +749,9 @@ discard block |
||
| 716 | 749 | while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 717 | 750 | { |
| 718 | 751 | // We only list the groups they can see. |
| 719 | - if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) |
|
| 720 | - continue; |
|
| 752 | + if ($row['hidden'] && !$row['can_moderate'] && !allowedTo('manage_membergroups')) { |
|
| 753 | + continue; |
|
| 754 | + } |
|
| 721 | 755 | |
| 722 | 756 | $row['icons'] = explode('#', $row['icons']); |
| 723 | 757 | |
@@ -752,12 +786,11 @@ discard block |
||
| 752 | 786 | 'group_list' => $group_ids, |
| 753 | 787 | ) |
| 754 | 788 | ); |
| 755 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 756 | - $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 789 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 790 | + $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 791 | + } |
|
| 757 | 792 | $smcFunc['db_free_result']($query); |
| 758 | - } |
|
| 759 | - |
|
| 760 | - else |
|
| 793 | + } else |
|
| 761 | 794 | { |
| 762 | 795 | $query = $smcFunc['db_query']('', ' |
| 763 | 796 | SELECT id_group, COUNT(*) AS num_members |
@@ -768,8 +801,9 @@ discard block |
||
| 768 | 801 | 'group_list' => $group_ids, |
| 769 | 802 | ) |
| 770 | 803 | ); |
| 771 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 772 | - $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 804 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 805 | + $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 806 | + } |
|
| 773 | 807 | $smcFunc['db_free_result']($query); |
| 774 | 808 | |
| 775 | 809 | // Only do additional groups if we can moderate... |
@@ -788,8 +822,9 @@ discard block |
||
| 788 | 822 | 'blank_string' => '', |
| 789 | 823 | ) |
| 790 | 824 | ); |
| 791 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 792 | - $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 825 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 826 | + $groups[$row['id_group']]['num_members'] += $row['num_members']; |
|
| 827 | + } |
|
| 793 | 828 | $smcFunc['db_free_result']($query); |
| 794 | 829 | } |
| 795 | 830 | } |
@@ -803,8 +838,9 @@ discard block |
||
| 803 | 838 | 'group_list' => $group_ids, |
| 804 | 839 | ) |
| 805 | 840 | ); |
| 806 | - while ($row = $smcFunc['db_fetch_assoc']($query)) |
|
| 807 | - $groups[$row['id_group']]['moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 841 | + while ($row = $smcFunc['db_fetch_assoc']($query)) { |
|
| 842 | + $groups[$row['id_group']]['moderators'][] = '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>'; |
|
| 843 | + } |
|
| 808 | 844 | $smcFunc['db_free_result']($query); |
| 809 | 845 | } |
| 810 | 846 | |
@@ -813,8 +849,9 @@ discard block |
||
| 813 | 849 | { |
| 814 | 850 | $sort_ascending = strpos($sort, 'DESC') === false; |
| 815 | 851 | |
| 816 | - foreach ($groups as $group) |
|
| 817 | - $sort_array[] = $group['id_group'] != 3 ? (int) $group['num_members'] : -1; |
|
| 852 | + foreach ($groups as $group) { |
|
| 853 | + $sort_array[] = $group['id_group'] != 3 ? (int) $group['num_members'] : -1; |
|
| 854 | + } |
|
| 818 | 855 | |
| 819 | 856 | array_multisort($sort_array, $sort_ascending ? SORT_ASC : SORT_DESC, SORT_REGULAR, $groups); |
| 820 | 857 | } |
@@ -17,8 +17,9 @@ discard block |
||
| 17 | 17 | * @version 2.1 Beta 4 |
| 18 | 18 | */ |
| 19 | 19 | |
| 20 | -if (!defined('SMF')) |
|
| 20 | +if (!defined('SMF')) { |
|
| 21 | 21 | die('No direct access...'); |
| 22 | +} |
|
| 22 | 23 | |
| 23 | 24 | /** |
| 24 | 25 | * Attempt to start the session, unless it already has been. |
@@ -38,8 +39,9 @@ discard block |
||
| 38 | 39 | { |
| 39 | 40 | $parsed_url = parse_url($boardurl); |
| 40 | 41 | |
| 41 | - if (preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1) |
|
| 42 | - @ini_set('session.cookie_domain', '.' . $parts[1]); |
|
| 42 | + if (preg_match('~^\d{1,3}(\.\d{1,3}){3}$~', $parsed_url['host']) == 0 && preg_match('~(?:[^\.]+\.)?([^\.]{2,}\..+)\z~i', $parsed_url['host'], $parts) == 1) { |
|
| 43 | + @ini_set('session.cookie_domain', '.' . $parts[1]); |
|
| 44 | + } |
|
| 43 | 45 | } |
| 44 | 46 | // @todo Set the session cookie path? |
| 45 | 47 | |
@@ -47,8 +49,9 @@ discard block |
||
| 47 | 49 | if ((ini_get('session.auto_start') == 1 && !empty($modSettings['databaseSession_enable'])) || session_id() == '') |
| 48 | 50 | { |
| 49 | 51 | // Attempt to end the already-started session. |
| 50 | - if (ini_get('session.auto_start') == 1) |
|
| 51 | - session_write_close(); |
|
| 52 | + if (ini_get('session.auto_start') == 1) { |
|
| 53 | + session_write_close(); |
|
| 54 | + } |
|
| 52 | 55 | |
| 53 | 56 | // This is here to stop people from using bad junky PHPSESSIDs. |
| 54 | 57 | if (isset($_REQUEST[session_name()]) && preg_match('~^[A-Za-z0-9,-]{16,64}$~', $_REQUEST[session_name()]) == 0 && !isset($_COOKIE[session_name()])) |
@@ -65,19 +68,21 @@ discard block |
||
| 65 | 68 | @ini_set('session.serialize_handler', 'php'); |
| 66 | 69 | session_set_save_handler('sessionOpen', 'sessionClose', 'sessionRead', 'sessionWrite', 'sessionDestroy', 'sessionGC'); |
| 67 | 70 | @ini_set('session.gc_probability', '1'); |
| 71 | + } elseif (ini_get('session.gc_maxlifetime') <= 1440 && !empty($modSettings['databaseSession_lifetime'])) { |
|
| 72 | + @ini_set('session.gc_maxlifetime', max($modSettings['databaseSession_lifetime'], 60)); |
|
| 68 | 73 | } |
| 69 | - elseif (ini_get('session.gc_maxlifetime') <= 1440 && !empty($modSettings['databaseSession_lifetime'])) |
|
| 70 | - @ini_set('session.gc_maxlifetime', max($modSettings['databaseSession_lifetime'], 60)); |
|
| 71 | 74 | |
| 72 | 75 | // Use cache setting sessions? |
| 73 | - if (empty($modSettings['databaseSession_enable']) && !empty($modSettings['cache_enable']) && php_sapi_name() != 'cli') |
|
| 74 | - call_integration_hook('integrate_session_handlers'); |
|
| 76 | + if (empty($modSettings['databaseSession_enable']) && !empty($modSettings['cache_enable']) && php_sapi_name() != 'cli') { |
|
| 77 | + call_integration_hook('integrate_session_handlers'); |
|
| 78 | + } |
|
| 75 | 79 | |
| 76 | 80 | session_start(); |
| 77 | 81 | |
| 78 | 82 | // Change it so the cache settings are a little looser than default. |
| 79 | - if (!empty($modSettings['databaseSession_loose'])) |
|
| 80 | - header('Cache-Control: private'); |
|
| 83 | + if (!empty($modSettings['databaseSession_loose'])) { |
|
| 84 | + header('Cache-Control: private'); |
|
| 85 | + } |
|
| 81 | 86 | } |
| 82 | 87 | |
| 83 | 88 | // Set the randomly generated code. |
@@ -123,8 +128,9 @@ discard block |
||
| 123 | 128 | { |
| 124 | 129 | global $smcFunc; |
| 125 | 130 | |
| 126 | - if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) |
|
| 127 | - return ''; |
|
| 131 | + if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) { |
|
| 132 | + return ''; |
|
| 133 | + } |
|
| 128 | 134 | |
| 129 | 135 | // Look for it in the database. |
| 130 | 136 | $result = $smcFunc['db_query']('', ' |
@@ -153,8 +159,9 @@ discard block |
||
| 153 | 159 | { |
| 154 | 160 | global $smcFunc; |
| 155 | 161 | |
| 156 | - if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) |
|
| 157 | - return false; |
|
| 162 | + if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) { |
|
| 163 | + return false; |
|
| 164 | + } |
|
| 158 | 165 | |
| 159 | 166 | // First try to update an existing row... |
| 160 | 167 | $smcFunc['db_query']('', ' |
@@ -169,13 +176,14 @@ discard block |
||
| 169 | 176 | ); |
| 170 | 177 | |
| 171 | 178 | // If that didn't work, try inserting a new one. |
| 172 | - if ($smcFunc['db_affected_rows']() == 0) |
|
| 173 | - $smcFunc['db_insert']('ignore', |
|
| 179 | + if ($smcFunc['db_affected_rows']() == 0) { |
|
| 180 | + $smcFunc['db_insert']('ignore', |
|
| 174 | 181 | '{db_prefix}sessions', |
| 175 | 182 | array('session_id' => 'string', 'data' => 'string', 'last_update' => 'int'), |
| 176 | 183 | array($session_id, $data, time()), |
| 177 | 184 | array('session_id') |
| 178 | 185 | ); |
| 186 | + } |
|
| 179 | 187 | |
| 180 | 188 | return ($smcFunc['db_affected_rows']() == 0 ? false : true); |
| 181 | 189 | } |
@@ -190,8 +198,9 @@ discard block |
||
| 190 | 198 | { |
| 191 | 199 | global $smcFunc; |
| 192 | 200 | |
| 193 | - if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) |
|
| 194 | - return false; |
|
| 201 | + if (preg_match('~^[A-Za-z0-9,-]{16,64}$~', $session_id) == 0) { |
|
| 202 | + return false; |
|
| 203 | + } |
|
| 195 | 204 | |
| 196 | 205 | // Just delete the row... |
| 197 | 206 | $smcFunc['db_query']('', ' |
@@ -217,8 +226,9 @@ discard block |
||
| 217 | 226 | global $modSettings, $smcFunc; |
| 218 | 227 | |
| 219 | 228 | // Just set to the default or lower? Ignore it for a higher value. (hopefully) |
| 220 | - if (!empty($modSettings['databaseSession_lifetime']) && ($max_lifetime <= 1440 || $modSettings['databaseSession_lifetime'] > $max_lifetime)) |
|
| 221 | - $max_lifetime = max($modSettings['databaseSession_lifetime'], 60); |
|
| 229 | + if (!empty($modSettings['databaseSession_lifetime']) && ($max_lifetime <= 1440 || $modSettings['databaseSession_lifetime'] > $max_lifetime)) { |
|
| 230 | + $max_lifetime = max($modSettings['databaseSession_lifetime'], 60); |
|
| 231 | + } |
|
| 222 | 232 | |
| 223 | 233 | // Clean up after yerself ;). |
| 224 | 234 | $smcFunc['db_query']('', ' |