From 96aa4a05d94bcae6facadf5087d4f0368e6aca49 Mon Sep 17 00:00:00 2001 From: abaicus Date: Wed, 2 Oct 2024 17:12:21 +0300 Subject: [PATCH 1/2] fix: deactivate template directory module by default [closes Codeinwp/hestia-pro#2683] --- obfx_modules/template-directory/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/obfx_modules/template-directory/init.php b/obfx_modules/template-directory/init.php index a605a386..8a295af6 100644 --- a/obfx_modules/template-directory/init.php +++ b/obfx_modules/template-directory/init.php @@ -29,7 +29,7 @@ public function __construct() { parent::__construct(); $this->name = __( 'Template Directory Module', 'themeisle-companion' ); $this->description = __( 'The awesome template directory is aiming to provide a wide range of templates that you can import straight into your website.', 'themeisle-companion' ); - $this->active_default = true; + $this->active_default = false; $this->refresh_after_enabled = true; } From b2292a85ee29a70048148274e1a544b48ab687bd Mon Sep 17 00:00:00 2001 From: abaicus Date: Wed, 2 Oct 2024 17:17:22 +0300 Subject: [PATCH 2/2] chore: fix phpunit workflow --- .github/workflows/test-php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-php.yml b/.github/workflows/test-php.yml index 57874eb0..b539e24f 100644 --- a/.github/workflows/test-php.yml +++ b/.github/workflows/test-php.yml @@ -34,7 +34,7 @@ jobs: run: composer run lint phpunit: name: Phpunit - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 services: mysql: image: mysql:5.7