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
@@ -560,7 +562,7 @@ function system_listing_save($edit = array()) {
$status=1;
}
// If status is being set to 1 from 0, initialize block data for this theme if necessary.
if(($status==1)&&db_num_rows(db_query("SELECT status FROM {system} WHERE type = '%s' AND name = '%s' AND status = 0",$edit['type'],$name))){
if(($edit['type']=='theme')&&($status==1)&&db_num_rows(db_query("SELECT status FROM {system} WHERE type = '%s' AND name = '%s' AND status = 0",$edit['type'],$name))){
system_initialize_theme_blocks($name);
}
...
...
@@ -578,19 +580,21 @@ function system_listing_save($edit = array()) {
}
}
/**
* Assign an initial, default set of blocks for a theme. This function is called the first
* time a new theme is enabled. The new theme gets a copy of the default theme's blocks,
* with the difference that if a particular region isn't available in the new theme, the block
* is assigned instead to the new theme's default region.
* Assign an initial, default set of blocks for a theme.
*
* This function is called the first time a new theme is enabled. The new theme
* gets a copy of the default theme's blocks, with the difference that if a
* particular region isn't available in the new theme, the block is assigned
@@ -560,7 +562,7 @@ function system_listing_save($edit = array()) {
$status=1;
}
// If status is being set to 1 from 0, initialize block data for this theme if necessary.
if(($status==1)&&db_num_rows(db_query("SELECT status FROM {system} WHERE type = '%s' AND name = '%s' AND status = 0",$edit['type'],$name))){
if(($edit['type']=='theme')&&($status==1)&&db_num_rows(db_query("SELECT status FROM {system} WHERE type = '%s' AND name = '%s' AND status = 0",$edit['type'],$name))){
system_initialize_theme_blocks($name);
}
...
...
@@ -578,19 +580,21 @@ function system_listing_save($edit = array()) {
}
}
/**
* Assign an initial, default set of blocks for a theme. This function is called the first
* time a new theme is enabled. The new theme gets a copy of the default theme's blocks,
* with the difference that if a particular region isn't available in the new theme, the block
* is assigned instead to the new theme's default region.
* Assign an initial, default set of blocks for a theme.
*
* This function is called the first time a new theme is enabled. The new theme
* gets a copy of the default theme's blocks, with the difference that if a
* particular region isn't available in the new theme, the block is assigned