From 1d33f217f8b26d50884c6c14a3a980354c518967 Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Sun, 7 Apr 2013 15:07:40 -0400 Subject: [PATCH] Wrong initialization of the in_anchor member variable. --- markdown.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown.php b/markdown.php index 89d961f..070a6ac 100644 --- a/markdown.php +++ b/markdown.php @@ -263,7 +263,7 @@ class Markdown_Parser { $this->titles = $this->predef_titles; $this->html_hashes = array(); - $in_anchor = false; + $this->in_anchor = false; } function teardown() {