From a4760b8ee409c2c96a0e77445debf931259cb9aa Mon Sep 17 00:00:00 2001 From: UndefinedOffset Date: Thu, 24 Nov 2016 17:28:15 -0400 Subject: [PATCH] BUGFIX: Fixed issue where a shortcode's location would not get set to split when using the class leftAlone --- parsers/ShortcodeParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/ShortcodeParser.php b/parsers/ShortcodeParser.php index 68b78fa91..b2d774fb8 100644 --- a/parsers/ShortcodeParser.php +++ b/parsers/ShortcodeParser.php @@ -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) {