1
0

fixed error handling

This commit is contained in:
Thomas E. Horner 2012-03-15 20:30:57 +01:00
parent 0e179ac2ad
commit 5a023f5e0c

View File

@ -52,14 +52,13 @@ class Gallery1DataParser {
is_readable($fileName . '.bak')) {
$fileName .= '.bak';
} else {
return array(GalleryCoreApi::error(ERROR_BAD_PARAMETER, __FILE__, __LINE__,
"Missing or not readable file: $fileName"), null);
return array('ERROR_BAD_PARAMETER', null);
}
}
$tmp = file($fileName);
if (empty($tmp)) {
return array(GalleryCoreApi::error(ERROR_MISSING_VALUE), null);
return array('ERROR_MISSING_VALUE', null);
}
$tmp = join('', $tmp);