Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
add868f
Sync branch [skip ci]
pirate-bot Jul 29, 2026
a5b1cc9
Sync branch [skip ci]
pirate-bot Jul 29, 2026
a8615ff
Sync branch [skip ci]
pirate-bot Jul 29, 2026
567c310
Sync branch [skip ci]
pirate-bot Jul 29, 2026
0cf1669
Sync branch [skip ci]
pirate-bot Jul 29, 2026
d6415ee
Sync branch [skip ci]
pirate-bot Aug 20, 2026
cebdb9c
chore(deps-dev): bump phpstan/phpstan from 2.2.5 to 2.2.7 (#542)
dependabot[bot] Aug 24, 2026
930ebf1
chore(deps-dev): bump wp-coding-standards/wpcs from 3.4.0 to 3.4.1 (#…
dependabot[bot] Aug 24, 2026
9133484
Sync branch [skip ci]
pirate-bot Aug 24, 2026
b457967
chore(deps-dev): bump php-stubs/wordpress-stubs from 6.9.4 to 7.0.1 (…
dependabot[bot] Aug 24, 2026
86eb827
chore(deps): bump codeinwp/themeisle-sdk from 3.3.58 to 3.3.59 (#548)
dependabot[bot] Aug 25, 2026
444a324
chore(deps-dev): bump phpstan/phpstan from 2.2.7 to 2.2.8 (#547)
dependabot[bot] Aug 25, 2026
b70c048
Sync branch [skip ci]
pirate-bot Aug 31, 2026
e0fa4e0
chore(deps): bump codeinwp/themeisle-sdk from 3.3.59 to 3.3.61 (#552)
dependabot[bot] Aug 31, 2026
edc4119
chore(deps-dev): bump phpstan/phpstan from 2.2.8 to 2.2.9 (#551)
dependabot[bot] Aug 31, 2026
59f41d3
ci: skip PR-comment job on Dependabot PRs (no secrets, always fails)
selul Sep 2, 2026
c8fb896
ci: revert Dependabot gate on PR-comment job (org Dependabot secret c…
selul Sep 2, 2026
e59b77c
chore(deps-dev): bump php-stubs/wordpress-stubs from 7.0.1 to 7.1.0 (…
dependabot[bot] Sep 4, 2026
f0127c6
fix: purge caches when the wizard enables maintenance mode (#560)
selul Sep 10, 2026
ed549cc
chore(deps-dev): bump phpstan/phpstan from 2.2.9 to 2.2.13 (#562)
dependabot[bot] Sep 11, 2026
dfea960
chore(deps): bump codeinwp/themeisle-sdk from 3.3.61 to 3.3.62 (#566)
dependabot[bot] Sep 18, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
e2e:
name: Playwright
runs-on: ubuntu-latest
env:
# PHP 7.4 images depend on the expired Debian Bullseye package index.
WP_ENV_PHP_VERSION: "8.2"
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"phpunit/phpunit": "^9.6",
"yoast/phpunit-polyfills": "^4.0",
"phpstan/phpstan": "^2.1",
"php-stubs/wordpress-stubs": "^6.8"
"php-stubs/wordpress-stubs": "^7.0"
},
"autoload": {
"files": [
Expand Down
42 changes: 21 additions & 21 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion includes/classes/wp-maintenance-mode-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -819,13 +819,16 @@ public function insert_template() {
CSS_Handler::generate_css_file( $page_id );
}

if ( 'wizard' === $_POST['source'] ) {
if ( 'wizard' === $source ) {
$this->plugin_settings['general']['status'] = 1;
update_option( 'wpmm_fresh_install', false );
}

update_option( 'wpmm_page_category', $category );
update_option( 'wpmm_settings', $this->plugin_settings );
if ( 'wizard' === $source ) {
wpmm_delete_cache();
}
wp_send_json_success( array( 'pageEditURL' => get_edit_post_link( $page_id ) ) );
}

Expand Down
Loading