forgot to switch of error_log for not found images, as that happens regulary in some parts of EGroupware

This commit is contained in:
Ralf Becker 2011-08-31 08:01:18 +00:00
parent 19d167f5be
commit 5d83c036e0

View File

@ -781,7 +781,7 @@ class common
return $url;
}
}
error_log(__METHOD__."('$app', ".array2string($image).", '$extension') NONE found!");
//error_log(__METHOD__."('$app', ".array2string($image).", '$extension') NONE found!");
return null;
}
@ -809,7 +809,7 @@ class common
self::get_extension($image, $name);
return self::image($app, $name, $extension);
}
error_log(__METHOD__."('$app', '$image', '$extension') image NOT found!");
//error_log(__METHOD__."('$app', '$image', '$extension') image NOT found!");
return null;
}