Feature #19739 » matchcondition.diff
t3lib/class.t3lib_matchcondition.php (copie de travail) | ||
---|---|---|
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;
|
||
}
|
||