diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2012-06-20 12:07:52 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-06-20 12:07:52 +0000 |
commit | 52fab44f032332d1e6b53b99a09b5321f6a9e965 (patch) | |
tree | 129db24e9c4b19badeb6630222a30a4fbbb2edcd /h-source/Application/Include/myFunctions.php | |
parent | b104237e953dfc860bee165bc4e45b474f5144e0 (diff) |
changed the regular expr for the model name (to allow comma)
Diffstat (limited to 'h-source/Application/Include/myFunctions.php')
-rw-r--r-- | h-source/Application/Include/myFunctions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/h-source/Application/Include/myFunctions.php b/h-source/Application/Include/myFunctions.php index 2f2a88a..bfcd8db 100644 --- a/h-source/Application/Include/myFunctions.php +++ b/h-source/Application/Include/myFunctions.php @@ -24,6 +24,7 @@ function encodeUrl($url) { $url = str_replace(' ','-',$url); $url = str_replace('.','-',$url); + $url = str_replace(',','-',$url); $url = str_replace('[','-',$url); $url = str_replace(']','-',$url); $url = str_replace('(','-',$url); |