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

Fixes: #2215 Message about MDB2 check not precise enough on the wizard

Showing with 4 additions and 9 deletions
+4 -9
......@@ -129,15 +129,10 @@ class Step_Checks extends setup_step
$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 = FALSE;
$this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
/* Check if MDB2 mysql driver is available */
$N = msgPool::checkingFor(_("MDB2 mysql"));
$D = _("FusionDirectory requires this module to communicate with mysql databases.");
$S = msgPool::installPearModule("MDB2 mysql");
$R = ((@include_once("PEAR.php")) && (@include_once("MDB2/Driver/mysql.php")));
$M = FALSE;
$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.");
}
$this->basic_checks[] = array("NAME" => $N , "DESC" => $D , "RESULT" => $R , "SOLUTION" => $S , "MUST" => $M );
$N = msgPool::checkingFor(_("imagick"));
......
  • bmortier @bmortier

    mentioned in issue #758

    By obonhomme on 2017-09-02T14:58:04 (imported from GitLab)

    ·

    mentioned in issue #758

    By obonhomme on 2017-09-02T14:58:04 (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