From 5ca8d95c9396bb826aadf4f077137292ead82f77 Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Mon, 21 Mar 2022 21:43:05 +1000 Subject: [PATCH] Allow updates and new plugin installation from the WordPress dashboard. Done #5167 @0.5 --- config/application.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/application.php b/config/application.php index 5253eca..de828df 100644 --- a/config/application.php +++ b/config/application.php @@ -95,8 +95,8 @@ Config::define('AUTOMATIC_UPDATER_DISABLED', true); Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false); // Disable the plugin and theme file editor in the admin Config::define('DISALLOW_FILE_EDIT', true); -// Disable plugin and theme updates and installation from the admin -Config::define('DISALLOW_FILE_MODS', true); +// Allow plugin and theme updates and installation from the admin +Config::define('DISALLOW_FILE_MODS', false); /** * Debugging Settings -- 2.39.5