From: Wouter Wolters Date: Sun, 1 Jul 2012 15:16:29 +0000 (+0200) Subject: [TASK] Fix CGL violations against InlineControlStructure X-Git-Tag: TYPO3_6-2-0alpha1~19^2~30 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/27f2b40b9a33f9aafa5777822a155191c26045f3 [TASK] Fix CGL violations against InlineControlStructure Fix CGL violations against InlineControlStructure Change-Id: Id4e2c416bc15cf65be505838b02b7898cd42b457 Resolves: #38521 Releases: 6.0 --- diff --git a/typo3/sysext/linkvalidator/classes/class.tx_linkvalidator_processor.php b/typo3/sysext/linkvalidator/classes/class.tx_linkvalidator_processor.php index 10c1128c4452..5105e58e5b76 100644 --- a/typo3/sysext/linkvalidator/classes/class.tx_linkvalidator_processor.php +++ b/typo3/sysext/linkvalidator/classes/class.tx_linkvalidator_processor.php @@ -154,7 +154,9 @@ class tx_linkvalidator_Processor { $where .= t3lib_BEfunc::BEenableFields($table); } // If table is not configured, assume the extension is not installed and therefore no need to check it - if (!is_array($GLOBALS['TCA'][$table])) continue; + if (!is_array($GLOBALS['TCA'][$table])) { + continue; + } // Re-init selectFields for table $selectFields = 'uid, pid';