Bug #22305 ยป 13874.patch
t3lib/utility/class.t3lib_utility_client.php (working copy) | ||
---|---|---|
'returnResult' => &$returnResult,
|
||
);
|
||
$hookResult = t3lib_div::callUserFunction($hookFunction, $hookParameters, NULL);
|
||
$null = NULL;
|
||
$hookResult = t3lib_div::callUserFunction($hookFunction, $hookParameters, $null);
|
||
if ($returnResult && is_array($hookResult) && count($hookResult)) {
|
||
return $hookResult;
|
||
}
|
||
... | ... | |
'returnResult' => &$returnResult,
|
||
);
|
||
$hookResult = t3lib_div::callUserFunction($hookFunction, $hookParameters, NULL);
|
||
$null = NULL;
|
||
$hookResult = t3lib_div::callUserFunction($hookFunction, $hookParameters, $null);
|
||
if ($returnResult && is_string($hookResult) && !empty($hookResult)) {
|
||
return $hookResult;
|
||
}
|