Switch to is_callable instead of function_exists to allow for class based importer plugins. Fixes #4614
git-svn-id: http://svn.automattic.com/wordpress/trunk@6113 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3d3846ee8a
commit
b36db5619b
|
@ -78,7 +78,7 @@ if (isset($plugin_page)) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Allow plugins to define importers as well
|
// Allow plugins to define importers as well
|
||||||
if (! function_exists($wp_importers[$importer][2]))
|
if (! is_callable($wp_importers[$importer][2]))
|
||||||
{
|
{
|
||||||
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue