Index: t3lib/class.t3lib_matchcondition.php =================================================================== --- t3lib/class.t3lib_matchcondition.php (révision 4600) +++ t3lib/class.t3lib_matchcondition.php (copie de travail) @@ -374,6 +374,17 @@ return true; } break; + case 'ext': + $values = explode(',', $value); + foreach($values as $test) { + $test = trim($test); + if (strlen($test)) { + if (t3lib_extMgm::isLoaded($test)) { + return true; + } + } + } + break; }