BUGFIX: Fixed issue where a shortcode's location would not get set to split when using the class leftAlone

This commit is contained in:
UndefinedOffset 2016-11-24 17:28:15 -04:00
parent 730512f036
commit a4760b8ee4

View File

@ -572,7 +572,7 @@ class ShortcodeParser extends Object {
$location = self::INLINE;
if($class == 'left' || $class == 'right') $location = self::BEFORE;
if($class == 'center' || $class == 'leftALone') $location = self::SPLIT;
if($class == 'center' || $class == 'leftAlone') $location = self::SPLIT;
if(!$parent) {
if($location !== self::INLINE) {