diff --git a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php index d92a63785af808d2e5d755465d9235c5ca2220d5..742db17dc778bcc50a68f60aeb609b062e29c3c1 100644 --- a/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php +++ b/typo3/sysext/frontend/Classes/Plugin/AbstractPlugin.php @@ -1233,7 +1233,7 @@ class AbstractPlugin $fList = GeneralUtility::trimExplode(',', $fList, true); $tempPiVars = $this->piVars; foreach ($fList as $k) { - if (!MathUtility::canBeInterpretedAsInteger($tempPiVars[$k]) || $tempPiVars[$k] < $lowerThan) { + if (isset($tempPiVars[$k]) && (!MathUtility::canBeInterpretedAsInteger($tempPiVars[$k]) || $tempPiVars[$k] < $lowerThan)) { unset($tempPiVars[$k]); } }