summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-31 18:31:46 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-31 18:31:46 +0000
commita3dd7ebad728f3778add41fd0fea1fc3c5fb6254 (patch)
treee3cd27fc3ca026a5f553b79c7575bf4c25b9ea23
parent1c8c34d5ea18b2784c504f4bb2018ac8e6039286 (diff)
downloadbrdo-a3dd7ebad728f3778add41fd0fea1fc3c5fb6254.tar.gz
brdo-a3dd7ebad728f3778add41fd0fea1fc3c5fb6254.tar.bz2
- Patch #698902 by mr.baileys: make MySQL 5.0.15 requirement official.
-rw-r--r--CHANGELOG.txt2
-rw-r--r--INSTALL.txt2
-rw-r--r--includes/bootstrap.inc2
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 909a60953..9ddb62403 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -4,7 +4,7 @@ Drupal 7.0, xxxx-xx-xx (development version)
----------------------
- Database:
* Fully rewritten database layer utilizing PHP 5's PDO abstraction layer.
- * Drupal now requires MySQL >= 5.0 or PostgreSQL >= 8.3.
+ * Drupal now requires MySQL >= 5.0.15 or PostgreSQL >= 8.3.
* Added query builders for INSERT, UPDATE, DELETE, MERGE, and SELECT queries.
* Support for master/slave replication, transactions, multi-insert queries,
delayed inserts, and other features.
diff --git a/INSTALL.txt b/INSTALL.txt
index 22c914500..3bdf6b499 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -18,7 +18,7 @@ Drupal requires:
- a web server, Apache (version 2.0 or greater) is recommended,
- PHP 5 (5.2.0 or greater) (http://www.php.net/),
- - and either MySQL (5.0 or greater) (http://www.mysql.com/), PostgreSQL (8.3
+ - and either MySQL (5.0.15 or greater) (http://www.mysql.com/), PostgreSQL (8.3
or greater) (http://www.postgresql.org/), or SQLite (3.4.2 or greater)
(http://www.sqlite.org/).
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 8fff1c40e..aee7d588a 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -29,7 +29,7 @@ define('DRUPAL_MINIMUM_PHP_MEMORY_LIMIT', '40M');
/**
* Minimum supported version of MySQL, if it is used.
*/
-define('DRUPAL_MINIMUM_MYSQL', '5.0');
+define('DRUPAL_MINIMUM_MYSQL', '5.0.15');
/**
* Minimum supported version of PostgreSQL, if it is used.