diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-12-02 19:45:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-12-02 19:45:01 +0000 |
commit | 71a22f1c1f4da46a370dd11b9e31537f255c7375 (patch) | |
tree | 41e0c79282557b7f1ed878bf78ad482c2ce2f102 /includes/database/mysql/schema.inc | |
parent | 8900c6156d3ab1e48c8e8ff697305ce6530fbe5a (diff) | |
download | brdo-71a22f1c1f4da46a370dd11b9e31537f255c7375.tar.gz brdo-71a22f1c1f4da46a370dd11b9e31537f255c7375.tar.bz2 |
- Patch #337926 by Damien Tournoud: clean-up lower case handling.
Diffstat (limited to 'includes/database/mysql/schema.inc')
-rw-r--r-- | includes/database/mysql/schema.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc index 40f45aeb8..bbc9a9ca0 100644 --- a/includes/database/mysql/schema.inc +++ b/includes/database/mysql/schema.inc @@ -92,7 +92,7 @@ class DatabaseSchema_mysql extends DatabaseSchema { $sql .= ' auto_increment'; } - // $spec['default'] can be NULL, so we explicitely check for the key here. + // $spec['default'] can be NULL, so we explicitly check for the key here. if (array_key_exists('default', $spec)) { if (is_string($spec['default'])) { $spec['default'] = "'" . $spec['default'] . "'"; |