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…
Reference in New Issue