Skip to content
Snippets Groups Projects
Commit 7828a145 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Added missing brackets.

parent 02fa0d85
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -2020,7 +2020,7 @@ function system_update_183() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
$ret[] = update_sql("CREATE TABLE blocks_roles (
$ret[] = update_sql("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,
rid int(10) unsigned NOT NULL,
......@@ -2029,7 +2029,7 @@ function system_update_183() {
break;
case 'pgsql':
$ret[] = update_sql("CREATE TABLE blocks_roles (
$ret[] = update_sql("CREATE TABLE {blocks_roles} (
module varchar(64) NOT NULL,
delta varchar(32) NOT NULL,
rid integer NOT NULL,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment