diff --git a/includes/managers/class-fs-plugin-manager.php b/includes/managers/class-fs-plugin-manager.php index a3ae55b1..89461f01 100755 --- a/includes/managers/class-fs-plugin-manager.php +++ b/includes/managers/class-fs-plugin-manager.php @@ -125,7 +125,7 @@ function load() { $this->_module_id = $module->id; $found_module = true; } - } else if ( $this->_module_id == $module->id ) { + } else if ( isset( $module->id ) && $this->_module_id == $module->id ) { $found_module = true; } @@ -230,4 +230,4 @@ function get() { return $plugin; } - } \ No newline at end of file + }