mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
parent
4142c9c9e6
commit
ab4074cec1
@ -7,6 +7,7 @@ use File;
|
||||
use Lang;
|
||||
use View;
|
||||
use Config;
|
||||
use Schema;
|
||||
use RecursiveIteratorIterator;
|
||||
use RecursiveDirectoryIterator;
|
||||
use ApplicationException;
|
||||
@ -532,6 +533,10 @@ class PluginManager
|
||||
return;
|
||||
}
|
||||
|
||||
if (!Schema::hasTable('system_plugin_versions')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$disabled = Db::table('system_plugin_versions')->where('is_disabled', '1')->lists('code');
|
||||
|
||||
foreach ($disabled as $code) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user