error:
Kod:
Warning: Invalid argument supplied for foreach() in [path]/includes/functions.php on line 3453
The following error occurred when attempting to evaluate this template:
%1$s
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
functions.php
Kod:
function fetch_error_array($errors)
{
$compiled_errors = array();
foreach ($errors as $key => $value) <---linia 3453
{
if (is_string($value))
{
$compiled_errors[$key] = fetch_error($value);
}
else if (is_array($value))
{
$compiled_errors[$key] = call_user_func_array('fetch_error', $value);
}
}
return $compiled_errors;
}
Jak to zmodyfikować aby można było dodać funkcje php w widgecie w bocznej kolumnie na forum ?
Jeżeli potrzebne są jeszcze jakieś informacje proszę pisać.
Z góry dziękuję i pozdrawiam.