Fixed small variable-naming error.
This commit is contained in:
parent
f19233711e
commit
5ee3747a3c
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue