From e9fd4e912768d7fa32a8971e813096f63a5a983a Mon Sep 17 00:00:00 2001 From: secretr Date: Tue, 29 Sep 2009 11:32:09 +0000 Subject: [PATCH] e107 createConstants typo --- e107_handlers/e_parse_class.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/e107_handlers/e_parse_class.php b/e107_handlers/e_parse_class.php index 16025055f..c2c15d3e0 100644 --- a/e107_handlers/e_parse_class.php +++ b/e107_handlers/e_parse_class.php @@ -9,8 +9,8 @@ * Text processing and parsing functions * * $Source: /cvs_backup/e107_0.8/e107_handlers/e_parse_class.php,v $ -* $Revision: 1.63 $ -* $Date: 2009-09-28 19:17:58 $ +* $Revision: 1.64 $ +* $Date: 2009-09-29 11:32:09 $ * $Author: secretr $ * */ @@ -1355,9 +1355,9 @@ class e_parse break; case 4: // absolute & relative paths - $url = $this->replaceConstants($url, 3); - $url = $this->replaceConstants($url, 2); - $url = $this->replaceConstants($url, 1); + $url = $this->createConstants($url, 3); + $url = $this->createConstants($url, 2); + $url = $this->createConstants($url, 1); return $url; break;