From 27f2b40b9a33f9aafa5777822a155191c26045f3 Mon Sep 17 00:00:00 2001 From: Wouter Wolters Date: Sun, 1 Jul 2012 17:16:29 +0200 Subject: [PATCH] [TASK] Fix CGL violations against InlineControlStructure Fix CGL violations against InlineControlStructure Change-Id: Id4e2c416bc15cf65be505838b02b7898cd42b457 Resolves: #38521 Releases: 6.0 --- .../classes/class.tx_linkvalidator_processor.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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'; -- 2.20.1