Fixed small variable-naming error.

This commit is contained in:
Michel Fortin 2008-05-05 07:17:35 -04:00
parent f19233711e
commit 5ee3747a3c

View file

@ -250,8 +250,8 @@ class Markdown_Parser {
# states.
#
# Clear global hashes.
$this->urls = $predef_urls;
$this->titles = $predef_titles;
$this->urls = $this->predef_urls;
$this->titles = $this->predef_titles;
$this->html_hashes = array();
$in_anchor = false;