diff options
Diffstat (limited to 'utils')
-rw-r--r-- | utils/markdown.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/markdown.php b/utils/markdown.php index eabd01d..666e0b7 100644 --- a/utils/markdown.php +++ b/utils/markdown.php @@ -2464,7 +2464,7 @@ class MarkdownExtra_Parser extends Markdown_Parser { $centerr = ""; if(strlen($value) > 2 && $value[0] == '=' && $value[strlen($value)-1] == '=') { - if($this->simple) { + if($this->simple == false) { $centerl = "<div style=\"text-align: center;\">"; $centerr = "</div>"; } else { |