From 5d865f19807f21d0670946958091c27035d039e4 Mon Sep 17 00:00:00 2001 From: Nigel Banks Date: Fri, 9 Sep 2011 14:13:27 +0100 Subject: [PATCH] ISLANDORA-322: Can't Install Islandora with out XSLT (PHP4 extension) although XSLT is not used within islandora. (Fixed) --- fedora_repository.install | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/fedora_repository.install b/fedora_repository.install index 47ab7d3c..86094893 100644 --- a/fedora_repository.install +++ b/fedora_repository.install @@ -78,18 +78,6 @@ function fedora_repository_requirements($phase) { $requirements['dom']['serenity'] = REQUIREMENT_OK; } - // Test for XSLT - $requirements['xslt']['title'] = "PHP XSLT extension library"; - if ( ! function_exists('xslt_process') ) { - $requirements['xslt']['value'] = t("Not installed"); - $requirements['xslt']['severity'] = REQUIREMENT_ERROR; - $requirements['xslt']['description'] = t("Ensure that the PHP XSLT extension is installed."); - } - else { - $requirements['xslt']['value'] = t("Installed"); - $requirements['xslt']['serenity'] = REQUIREMENT_OK; - } - // Test for Imagick $requirements['imagick']['title'] = t("Image Magick library"); //if ( ! class_exists('Imagick') ) {