Skip to content

Commit

Permalink
Merge pull request #279 from localgovdrupal/2.x
Browse files Browse the repository at this point in the history
2.1.14 release
  • Loading branch information
finnlewis authored Aug 27, 2024
2 parents 714dbff + 3f44c6e commit afc71a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"drupal/condition_field": "^2.0",
"drupal/entity_browser": "^2.5",
"drupal/field_group": "~3.0",
"drupal/link_attributes": "^1.2",
"drupal/link_attributes": "^2.1",
"drupal/pathauto": "~1.0",
"localgovdrupal/localgov_core": "^2.12",
"localgovdrupal/localgov_page_components": "^1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ use Drupal\localgov_core\FieldRenameHelper;
/**
* Implements hook_install().
*/
function localgov_services_status_install() {
function localgov_services_status_install($is_syncing) {
if ($is_syncing) {
return;
}
// Check if simple_sitemap module is installed.
$simple_sitemap = \Drupal::moduleHandler()->moduleExists('simple_sitemap');
if ($simple_sitemap) {
Expand Down

0 comments on commit afc71a2

Please sign in to comment.