From 597cc1b31c3c07691231bc1ea0b3eee87f8c4f4f Mon Sep 17 00:00:00 2001 From: secretr Date: Mon, 26 Apr 2010 13:11:08 +0000 Subject: [PATCH] Shortcode parser: batch path fix - missing 'core' part --- e107_handlers/shortcode_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/shortcode_handler.php b/e107_handlers/shortcode_handler.php index 32934e807..f2f45bc61 100644 --- a/e107_handlers/shortcode_handler.php +++ b/e107_handlers/shortcode_handler.php @@ -286,7 +286,7 @@ class e_parse_shortcode $_class = 'plugin_'.$pluginName.'_'.$overrideClass; } - $path = ($pluginName ? e_PLUGIN.$pluginName.'/shortcodes/batch/' : e_CORE.'shortcodes/batch/').$_class_fname.'.php'; + $path = ($pluginName ? e_PLUGIN.$pluginName.'/core/shortcodes/batch/' : e_CORE.'shortcodes/batch/').$_class_fname.'.php'; if (is_readable($path)) {