$img->load($photo);
// If image is larger than the maximum size, we resize it.
if ($img->img_x > $size or $img->img_y > $size ) {
- if (!is_dir($path) and !mkdir($path)) {
+ if (!@is_dir($path) and !@mkdir($path)) {
return false;
}
if (PEAR::isError($img)) {