1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Shortcode parser: batch path fix - missing 'core' part

This commit is contained in:
secretr
2010-04-26 13:11:08 +00:00
parent 3437f4a47f
commit 597cc1b31c

View File

@@ -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))
{