partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 2bb478b5522154cf3a1de111f04647d60a9cde0c
parent 73868d751fa4154967e8068d68bf0d39f8e71d5e
Author: Felicitus <felicitus@felicitus.org>
Date:   Sun,  1 Jan 2012 12:47:36 +0100

Added imagick as requirement to the installer

Diffstat:
Msrc/setup/tests/check-php-settings.php | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/setup/tests/check-php-settings.php b/src/setup/tests/check-php-settings.php @@ -18,5 +18,10 @@ if (!class_exists("\\finfo")) { echo json_encode(array("error" => true, "errormessage" => "You are missing the fileinfo-library for PHP. Please install and activate it.")); exit; } + +if (!class_exists("\\Imagick")) { + echo json_encode(array("error" => true, "errormessage" => "You are missing the Imagick library for PHP. Please install and activate it.")); + exit; +} echo json_encode(array("error" => false)); exit; \ No newline at end of file