From 5ee3747a3cfd657ac58a3ebf65666332cb866ca9 Mon Sep 17 00:00:00 2001 From: Michel Fortin Date: Mon, 5 May 2008 07:17:35 -0400 Subject: [PATCH] Fixed small variable-naming error. --- markdown.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/markdown.php b/markdown.php index 76df706..72d9348 100644 --- a/markdown.php +++ b/markdown.php @@ -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;