GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — 2.9 ( 35d98a...ca3670 )
by Thorsten
41:40 queued 27:34
created
phpmyfaq/admin/record.save.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
             'dateStart' => (empty($dateStart) ? '00000000000000' : str_replace('-', '', $dateStart).'000000'),
145 145
             'dateEnd' => (empty($dateEnd) ? '99991231235959' : str_replace('-', '', $dateEnd).'235959'),
146 146
             'linkState' => '',
147
-            'linkDateCheck' => 0, );
147
+            'linkDateCheck' => 0,);
148 148
 
149 149
         // Create ChangeLog entry
150 150
         $faq->createChangeEntry($recordId, $user->getUserId(), nl2br($changed), $recordLang, $revisionId);
Please login to merge, or discard this patch.
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Save an existing FAQ record.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Thorsten Rinne <[email protected]>
14
- * @copyright 2003-2015 phpMyFAQ Team
15
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
- *
17
- * @link      http://www.phpmyfaq.de
18
- * @since     2003-02-23
19
- */
3
+                     * Save an existing FAQ record.
4
+                     *
5
+                     * PHP Version 5.5
6
+                     *
7
+                     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+                     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+                     * obtain one at http://mozilla.org/MPL/2.0/.
10
+                     *
11
+                     * @category  phpMyFAQ
12
+                     *
13
+                     * @author    Thorsten Rinne <[email protected]>
14
+                     * @copyright 2003-2015 phpMyFAQ Team
15
+                     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
+                     *
17
+                     * @link      http://www.phpmyfaq.de
18
+                     * @since     2003-02-23
19
+                     */
20 20
 if (!defined('IS_VALID_PHPMYFAQ')) {
21 21
     $protocol = 'http';
22 22
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
phpmyfaq/admin/record.search.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Shows the admin search frontend for FAQs.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Thorsten Rinne <[email protected]>
14
- * @copyright 2011-2015 phpMyFAQ Team
15
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
- *
17
- * @link      http://www.phpmyfaq.de
18
- * @since     2011-09-29
19
- */
3
+     * Shows the admin search frontend for FAQs.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+     * obtain one at http://mozilla.org/MPL/2.0/.
10
+     *
11
+     * @category  phpMyFAQ
12
+     *
13
+     * @author    Thorsten Rinne <[email protected]>
14
+     * @copyright 2011-2015 phpMyFAQ Team
15
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
+     *
17
+     * @link      http://www.phpmyfaq.de
18
+     * @since     2011-09-29
19
+     */
20 20
 if (!defined('IS_VALID_PHPMYFAQ')) {
21 21
     $protocol = 'http';
22 22
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
phpmyfaq/admin/record.show.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Shows the list of records ordered by categories.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Thorsten Rinne <[email protected]>
14
- * @author    Minoru TODA <[email protected]>
15
- * @copyright 2003-2015 phpMyFAQ Team
16
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
- *
18
- * @link      http://www.phpmyfaq.de
19
- * @since     2003-02-23
20
- */
3
+     * Shows the list of records ordered by categories.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+     * obtain one at http://mozilla.org/MPL/2.0/.
10
+     *
11
+     * @category  phpMyFAQ
12
+     *
13
+     * @author    Thorsten Rinne <[email protected]>
14
+     * @author    Minoru TODA <[email protected]>
15
+     * @copyright 2003-2015 phpMyFAQ Team
16
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
+     *
18
+     * @link      http://www.phpmyfaq.de
19
+     * @since     2003-02-23
20
+     */
21 21
 if (!defined('IS_VALID_PHPMYFAQ')) {
22 22
     $protocol = 'http';
23 23
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -223,11 +223,11 @@  discard block
 block discarded – undo
223 223
                     $fdTable.'.active AS active',
224 224
                     $fdTable.'.thema AS thema',
225 225
                     $fdTable.'.content AS content',
226
-                    $fdTable.'.updated AS updated', ))
226
+                    $fdTable.'.updated AS updated',))
227 227
             ->setJoinedTable($fcrTable)
228 228
             ->setJoinedColumns(array(
229 229
                     $fdTable.'.id = '.$fcrTable.'.record_id',
230
-                    $fdTable.'.lang = '.$fcrTable.'.record_lang', ));
230
+                    $fdTable.'.lang = '.$fcrTable.'.record_lang',));
231 231
 
232 232
         if (is_numeric($searchTerm)) {
233 233
             $search->setMatchingColumns(array($fdTable.'.solution_id'));
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
         $faqsFound = array();
244 244
 
245 245
         while ($row = $faqConfig->getDb()->fetchObject($result)) {
246
-            if ($searchCat != 0 && $searchCat != (int) $row->category_id) {
246
+            if ($searchCat != 0 && $searchCat != (int)$row->category_id) {
247 247
                 continue;
248 248
             }
249 249
 
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
                                             <input type="checkbox" lang="<?php echo $record['lang'] ?>"
444 444
                                                onclick="saveStatus(<?php echo $cid.', ['.$record['id'].']' ?>, 'sticky', '<?php echo $user->getCsrfTokenFromSession() ?>');"
445 445
                                                id="sticky_record_<?php echo $cid.'_'.$record['id'] ?>"
446
-                                            <?php echo($record['sticky'] ? 'checked' :  '    ') ?>>
446
+                                            <?php echo($record['sticky'] ? 'checked' : '    ') ?>>
447 447
                                         </label>
448 448
                                     </td>
449 449
                                     <td>
Please login to merge, or discard this patch.
phpmyfaq/admin/report.export.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -44,18 +44,18 @@
 block discarded – undo
44 44
 
45 45
     $text = [];
46 46
     $text[0] = [];
47
-    ($useCategory)     ? $text[0][] = $PMF_LANG['ad_stat_report_category'] : '';
48
-    ($useSubcategory)  ? $text[0][] = $PMF_LANG['ad_stat_report_sub_category'] : '';
49
-    ($useTranslation)  ? $text[0][] = $PMF_LANG['ad_stat_report_translations'] : '';
50
-    ($useLanguage)     ? $text[0][] = $PMF_LANG['ad_stat_report_language'] : '';
51
-    ($useId)           ? $text[0][] = $PMF_LANG['ad_stat_report_id'] : '';
52
-    ($useSticky)       ? $text[0][] = $PMF_LANG['ad_stat_report_sticky'] : '';
53
-    ($useTitle)        ? $text[0][] = $PMF_LANG['ad_stat_report_title'] : '';
47
+    ($useCategory) ? $text[0][] = $PMF_LANG['ad_stat_report_category'] : '';
48
+    ($useSubcategory) ? $text[0][] = $PMF_LANG['ad_stat_report_sub_category'] : '';
49
+    ($useTranslation) ? $text[0][] = $PMF_LANG['ad_stat_report_translations'] : '';
50
+    ($useLanguage) ? $text[0][] = $PMF_LANG['ad_stat_report_language'] : '';
51
+    ($useId) ? $text[0][] = $PMF_LANG['ad_stat_report_id'] : '';
52
+    ($useSticky) ? $text[0][] = $PMF_LANG['ad_stat_report_sticky'] : '';
53
+    ($useTitle) ? $text[0][] = $PMF_LANG['ad_stat_report_title'] : '';
54 54
     ($useCreationDate) ? $text[0][] = $PMF_LANG['ad_stat_report_creation_date'] : '';
55
-    ($useOwner)        ? $text[0][] = $PMF_LANG['ad_stat_report_owner'] : '';
55
+    ($useOwner) ? $text[0][] = $PMF_LANG['ad_stat_report_owner'] : '';
56 56
     ($useLastModified) ? $text[0][] = $PMF_LANG['ad_stat_report_last_modified_person'] : '';
57
-    ($useUrl)          ? $text[0][] = $PMF_LANG['ad_stat_report_url'] : '';
58
-    ($useVisits)       ? $text[0][] = $PMF_LANG['ad_stat_report_visits'] : '';
57
+    ($useUrl) ? $text[0][] = $PMF_LANG['ad_stat_report_url'] : '';
58
+    ($useVisits) ? $text[0][] = $PMF_LANG['ad_stat_report_visits'] : '';
59 59
 
60 60
     $report = new PMF_Report($faqConfig);
61 61
 
Please login to merge, or discard this patch.
phpmyfaq/admin/report.main.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The reporting page.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Gustavo Solt <[email protected]>
14
- * @author    Thorsten Rinne <[email protected]>
15
- * @copyright 2011-2015 phpMyFAQ Team
16
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
- *
18
- * @link      http://www.phpmyfaq.de
19
- * @since     2011-01-12
20
- */
3
+     * The reporting page.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+     * obtain one at http://mozilla.org/MPL/2.0/.
10
+     *
11
+     * @category  phpMyFAQ
12
+     *
13
+     * @author    Gustavo Solt <[email protected]>
14
+     * @author    Thorsten Rinne <[email protected]>
15
+     * @copyright 2011-2015 phpMyFAQ Team
16
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
+     *
18
+     * @link      http://www.phpmyfaq.de
19
+     * @since     2011-01-12
20
+     */
21 21
 if (!defined('IS_VALID_PHPMYFAQ')) {
22 22
     $protocol = 'http';
23 23
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
phpmyfaq/admin/report.view.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -1,23 +1,23 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * View a generated report.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Gustavo Solt <[email protected]>
14
- * @author    Thorsten Rinne <[email protected]>
15
- * @copyright 2011-2015 phpMyFAQ Team
16
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
- *
18
- * @link      http://www.phpmyfaq.de
19
- * @since     2011-01-12
20
- */
3
+     * View a generated report.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+     * obtain one at http://mozilla.org/MPL/2.0/.
10
+     *
11
+     * @category  phpMyFAQ
12
+     *
13
+     * @author    Gustavo Solt <[email protected]>
14
+     * @author    Thorsten Rinne <[email protected]>
15
+     * @copyright 2011-2015 phpMyFAQ Team
16
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
17
+     *
18
+     * @link      http://www.phpmyfaq.de
19
+     * @since     2011-01-12
20
+     */
21 21
 if (!defined('IS_VALID_PHPMYFAQ')) {
22 22
     $protocol = 'http';
23 23
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -55,18 +55,18 @@
 block discarded – undo
55 55
                     <thead>
56 56
                         <tr>
57 57
 <?php
58
-    ($useCategory)     ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_category']) : '';
59
-    ($useSubcategory)  ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_sub_category']) : '';
60
-    ($useTranslation)  ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_translations']) : '';
61
-    ($useLanguage)     ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_language']) : '';
62
-    ($useId)           ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_id']) : '';
63
-    ($useSticky)       ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_sticky']) : '';
64
-    ($useTitle)        ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_title']) : '';
58
+    ($useCategory) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_category']) : '';
59
+    ($useSubcategory) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_sub_category']) : '';
60
+    ($useTranslation) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_translations']) : '';
61
+    ($useLanguage) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_language']) : '';
62
+    ($useId) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_id']) : '';
63
+    ($useSticky) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_sticky']) : '';
64
+    ($useTitle) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_title']) : '';
65 65
     ($useCreationDate) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_creation_date']) : '';
66
-    ($useOwner)        ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_owner']) : '';
66
+    ($useOwner) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_owner']) : '';
67 67
     ($useLastModified) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_last_modified_person']) : '';
68
-    ($useUrl)          ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_url']) : '';
69
-    ($useVisits)       ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_visits']) : '';
68
+    ($useUrl) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_url']) : '';
69
+    ($useVisits) ? printf('<th>%s</th>', $PMF_LANG['ad_stat_report_visits']) : '';
70 70
     ?>
71 71
                         </tr>
72 72
                     </thead>
Please login to merge, or discard this patch.
phpmyfaq/admin/session.keepalive.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
 if (!$user instanceof PMF_User_CurrentUser) {
52 52
     $user = PMF_User_CurrentUser::getFromSession($faqConfig);
53 53
 }
54
-$refreshTime = (PMF_AUTH_TIMEOUT - PMF_AUTH_TIMEOUT_WARNING) * 60;
54
+$refreshTime = (PMF_AUTH_TIMEOUT - PMF_AUTH_TIMEOUT_WARNING)*60;
55 55
 ?>
56 56
 <!DOCTYPE html>
57 57
 <html lang="<?php print $PMF_LANG['metaLanguage']; ?>" class="no-js">
Please login to merge, or discard this patch.
phpmyfaq/admin/stat.adminlog.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -1,24 +1,24 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Overview of actions in the admin section.
4
- *
5
- * PHP Version 5.5
6
- *
7
- *  http://www.mozilla.org/MPL/
8
- *
9
- * This Source Code Form is subject to the terms of the Mozilla Public License,
10
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
11
- * obtain one at http://mozilla.org/MPL/2.0/.
12
- *
13
- * @category  phpMyFAQ
14
- *
15
- * @author    Thorsten Rinne <[email protected]>
16
- * @copyright 2003-2015 phpMyFAQ Team
17
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
18
- *
19
- * @link      http://www.phpmyfaq.de
20
- * @since     2003-02-23
21
- */
3
+     * Overview of actions in the admin section.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     *  http://www.mozilla.org/MPL/
8
+     *
9
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
10
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
11
+     * obtain one at http://mozilla.org/MPL/2.0/.
12
+     *
13
+     * @category  phpMyFAQ
14
+     *
15
+     * @author    Thorsten Rinne <[email protected]>
16
+     * @copyright 2003-2015 phpMyFAQ Team
17
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
18
+     *
19
+     * @link      http://www.phpmyfaq.de
20
+     * @since     2003-02-23
21
+     */
22 22
 if (!defined('IS_VALID_PHPMYFAQ')) {
23 23
     $protocol = 'http';
24 24
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,10 +37,10 @@
 block discarded – undo
37 37
     $page = PMF_Filter::filterInput(INPUT_GET, 'page', FILTER_VALIDATE_INT, 1);
38 38
 
39 39
     if (is_null($pages)) {
40
-        $pages = round(($logging->getNumberOfEntries() + ($perpage / 3)) / $perpage, 0);
40
+        $pages = round(($logging->getNumberOfEntries() + ($perpage/3))/$perpage, 0);
41 41
     }
42 42
 
43
-    $start = ($page - 1) * $perpage;
43
+    $start = ($page - 1)*$perpage;
44 44
     $ende = $start + $perpage;
45 45
 
46 46
     $baseUrl = sprintf(
Please login to merge, or discard this patch.
phpmyfaq/admin/stat.browser.php 1 patch
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,22 +1,22 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Sessionbrowser.
4
- *
5
- * PHP Version 5.5
6
- *
7
- * This Source Code Form is subject to the terms of the Mozilla Public License,
8
- * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
- * obtain one at http://mozilla.org/MPL/2.0/.
10
- *
11
- * @category  phpMyFAQ
12
- *
13
- * @author    Thorsten Rinne <[email protected]>
14
- * @copyright 2003-2015 phpMyFAQ Team
15
- * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
- *
17
- * @link      http://www.phpmyfaq.de
18
- * @since     2003-02-24
19
- */
3
+     * Sessionbrowser.
4
+     *
5
+     * PHP Version 5.5
6
+     *
7
+     * This Source Code Form is subject to the terms of the Mozilla Public License,
8
+     * v. 2.0. If a copy of the MPL was not distributed with this file, You can
9
+     * obtain one at http://mozilla.org/MPL/2.0/.
10
+     *
11
+     * @category  phpMyFAQ
12
+     *
13
+     * @author    Thorsten Rinne <[email protected]>
14
+     * @copyright 2003-2015 phpMyFAQ Team
15
+     * @license   http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
16
+     *
17
+     * @link      http://www.phpmyfaq.de
18
+     * @since     2003-02-24
19
+     */
20 20
 if (!defined('IS_VALID_PHPMYFAQ')) {
21 21
     $protocol = 'http';
22 22
     if (isset($_SERVER['HTTPS']) && strtoupper($_SERVER['HTTPS']) === 'ON') {
Please login to merge, or discard this patch.