From c58a3d9685ed99e788fc2c4ef639acb3cbb1eb91 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Thu, 16 Oct 2008 14:19:23 -0400 Subject: [PATCH] fixed a bug and more cleanup --- htdocs/index.html | 11 +++++++++++ src/FunctionTokenProcessor.hx | 3 +-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/htdocs/index.html b/htdocs/index.html index 9466adf..c599782 100644 --- a/htdocs/index.html +++ b/htdocs/index.html @@ -3,9 +3,18 @@ Harmonious Code: Will my PHP code and Web hosting work together? + +

Harmonious Code

+
Loading...
@@ -32,8 +41,10 @@ +
diff --git a/src/FunctionTokenProcessor.hx b/src/FunctionTokenProcessor.hx index 069c262..862bec7 100644 --- a/src/FunctionTokenProcessor.hx +++ b/src/FunctionTokenProcessor.hx @@ -40,8 +40,7 @@ class FunctionTokenProcessor extends TokenProcessor { var version_clean_regexps = [ function(s) { return ~/PECL /.replace(s, ""); }, - function(s) { return ~/\:/.replace(s, " "); }, - function(s) { return ~/\, /.replace(s, ","); } + function(s) { return ~/\:/.replace(s, " "); } ]; while (i < s_length) {