Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
simple_sitemap
Commits
53203d1b
Commit
53203d1b
authored
Jun 29, 2019
by
Pawel G
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue
#3063870
by daniel.bosen: Schema error after updating 2.x to 3.x
parent
e1906c77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
simple_sitemap.install
simple_sitemap.install
+14
-0
No files found.
simple_sitemap.install
View file @
53203d1b
...
...
@@ -704,3 +704,17 @@ function simple_sitemap_update_8301() {
]
);
}
/**
* Removing unused batch_process_limit key from simple_sitemap.settings
* configuration.
*/
function
simple_sitemap_update_8302
()
{
$settings
=
\
Drupal
::
service
(
'config.factory'
)
->
getEditable
(
'simple_sitemap.settings'
);
if
(
NULL
!==
$settings
->
get
(
'batch_process_limit'
))
{
$settings
->
clear
(
'batch_process_limit'
);
$settings
->
save
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment