From 11526305f506245af55e8ae7ea31faec49dfd98d Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Mon, 02 Mar 2009 12:34:18 -0500
Subject: [PATCH] Revert r2322; this is done in rcmail_html4inline() and now secured + fix tests
---
installer/check.php | 6 +-----
1 files changed, 1 insertions(+), 5 deletions(-)
diff --git a/installer/check.php b/installer/check.php
index 4ede85c..4c34dd6 100644
--- a/installer/check.php
+++ b/installer/check.php
@@ -15,8 +15,7 @@
'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite');
$ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0,
- 'magic_quotes_gpc' => 0, 'magic_quotes_sybase' => 0,
- 'zend.ze1_compatibility_mode' => 0);
+ 'zend.ze1_compatibility_mode' => 0, 'mbstring.func_overload' => 0);
$source_urls = array(
'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php',
@@ -115,9 +114,6 @@
@include_once $file;
if (class_exists($classname)) {
$RCI->pass($classname);
- }
- else if ($classname == 'DB' || ($classname == 'MDB2' && class_exists('DB'))) {
- $RCI->na($classname, 'Use ' . ($classname == 'DB' ? 'MDB2' : 'DB') . ' instead');
}
else {
$RCI->fail($classname, "Failed to load $file", $source_urls[$classname]);
--
Gitblit v1.9.1