diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-12-06 15:36:23 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-12-06 15:36:23 +0000 |
commit | a94f95d37f1c76812e003852156ed52f97976d2b (patch) | |
tree | 938976cc5334630cf1743b73f5118ab9ba24dae6 | |
parent | 80f691eeefeb4bcb22d2094334867a8ca9094916 (diff) | |
download | brdo-a94f95d37f1c76812e003852156ed52f97976d2b.tar.gz brdo-a94f95d37f1c76812e003852156ed52f97976d2b.tar.bz2 |
- Patch #101421 by webchick: make sure that Drupal installs when MySQL's strict mode is enabled.
-rw-r--r-- | modules/system/system.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index dc4f33434..c5dfe1132 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -1050,8 +1050,8 @@ function system_install() { db_query("INSERT INTO {variable} (name,value) VALUES('theme_default', 's:7:\"garland\";')"); - db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 0, 'garland', 1)"); - db_query("INSERT INTO {blocks} (module,delta,theme,status) VALUES('user', 1, 'garland', 1)"); + db_query("INSERT INTO {blocks} (module,delta,theme,status,pages) VALUES('user', 0, 'garland', 1, '')"); + db_query("INSERT INTO {blocks} (module,delta,theme,status,pages) VALUES('user', 1, 'garland', 1, '')"); db_query("INSERT INTO {node_access} VALUES (0, 0, 'all', 1, 0, 0)"); |