diff --git a/ChangeLog b/ChangeLog index 1a72739b8f..c2c167b3db 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,6 +4,7 @@ phpMyAdmin - ChangeLog 4.2.4.0 (not yet released) - bug #4449 Mediawiki export does not produce table header row; also fix related PHP warnings - bug #4442 New lines are added to query every time +- bug #4445 Fatal error on SQL Export of join query 4.2.3.0 (2014-06-08) - bug #4423 Moving fields not working diff --git a/libraries/plugin_interface.lib.php b/libraries/plugin_interface.lib.php index 925a890db6..25698e2174 100644 --- a/libraries/plugin_interface.lib.php +++ b/libraries/plugin_interface.lib.php @@ -75,7 +75,10 @@ function PMA_getPlugins($plugin_type, $plugins_dir, $plugin_param) include_once $plugins_dir . $file; if (! $GLOBALS['skip_import']) { $class_name = $class_type . $matches[1]; - $plugin_list [] = new $class_name; + $plugin = new $class_name; + if (null !== $plugin->getProperties()) { + $plugin_list[] = $plugin; + } } } }