diff --git a/src/_h5ai/l10n/el.json b/src/_h5ai/l10n/el.json index ac98d91a..f3b0dbd8 100644 --- a/src/_h5ai/l10n/el.json +++ b/src/_h5ai/l10n/el.json @@ -12,5 +12,6 @@ "download": "μεταμόρφωση", "noMatch": "κανένα αποτέλεσμα", "dateFormat": "DD/MM/YYYY HH:mm", - "filter": "φίλτρο" + "filter": "φίλτρο", + "delete": "διαγραφή" } \ No newline at end of file diff --git a/src/_h5ai/php/api.php b/src/_h5ai/php/api.php index c9d00134..752c3b67 100644 --- a/src/_h5ai/php/api.php +++ b/src/_h5ai/php/api.php @@ -105,13 +105,13 @@ else if ($action === "getchecks") { $gdinfo = gd_info(); $gd = array_key_exists("JPG Support", $gdinfo) && $gdinfo["JPG Support"] || array_key_exists("JPEG Support", $gdinfo) && $gdinfo["JPEG Support"]; } - $cache = is_writable($h5ai->getH5aiAbsPath() . "/cache"); - $temp = is_writable(sys_get_temp_dir()); - $tar = preg_match("/tar$/", `which tar`) > 0; - $zip = preg_match("/zip$/", `which zip`) > 0; - $convert = preg_match("/convert$/", `which convert`) > 0; - $ffmpeg = preg_match("/ffmpeg$/", `which ffmpeg`) > 0; - $du = preg_match("/du$/", `which du`) > 0; + $cache = @is_writable($h5ai->getH5aiAbsPath() . "/cache"); + $temp = @is_writable(sys_get_temp_dir()); + $tar = @preg_match("/tar$/", `which tar`) > 0; + $zip = @preg_match("/zip$/", `which zip`) > 0; + $convert = @preg_match("/convert$/", `which convert`) > 0; + $ffmpeg = @preg_match("/ffmpeg$/", `which ffmpeg`) > 0; + $du = @preg_match("/du$/", `which du`) > 0; json_exit(array( "php" => $php,