Commit e48aedf6 authored by Côme Bernigaud's avatar Côme Bernigaud Committed by Benoit Mortier
Browse files

Fixes #3990 Removed check for MDB2

Showing with 0 additions and 11 deletions
+0 -11
...@@ -127,17 +127,6 @@ class Step_Checks extends setupStep ...@@ -127,17 +127,6 @@ class Step_Checks extends setupStep
$M = TRUE; $M = TRUE;
$basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M ); $basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
/* Check if MDB2 module is available */
$N = msgPool::checkingFor(_("MDB2"));
$D = _("FusionDirectory requires this module to communicate with several supported databases.");
$S = msgPool::installPearModule("MDB2");
$R = ((@include_once("PEAR.php")) && (@include_once("MDB2.php")));
$M = class_available("databaseManagement");
if ($M) {
$D .= "<br/>"._("If you do not want to install MDB2 and won't use databases, remove the class_databaseManagement.inc file.");
}
$basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
$N = msgPool::checkingFor(_("imagick")); $N = msgPool::checkingFor(_("imagick"));
$D = _("FusionDirectory requires this extension to handle images."); $D = _("FusionDirectory requires this extension to handle images.");
$S = msgPool::installPhpModule("php5-imagick"); $S = msgPool::installPhpModule("php5-imagick");
......
  • bmortier @bmortier

    mentioned in issue #1322

    By bmortier on 2017-09-02T15:22:10 (imported from GitLab)

    ·

    mentioned in issue #1322

    By bmortier on 2017-09-02T15:22:10 (imported from GitLab)

    Toggle commit list
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment