diff options
Diffstat (limited to 'h-source/Application/Include')
-rw-r--r-- | h-source/Application/Include/myFunctions.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/h-source/Application/Include/myFunctions.php b/h-source/Application/Include/myFunctions.php index 6b87958..d0d51bf 100644 --- a/h-source/Application/Include/myFunctions.php +++ b/h-source/Application/Include/myFunctions.php @@ -30,8 +30,7 @@ function encodeUrl($url) $url = str_replace(')','-',$url); $url = str_replace('/','-',$url); $url = str_replace('@','-at-',$url); - $url = str_replace('#','-at-',$url); - $url = str_replace('?','-at-',$url); + $url = str_replace('?','-',$url); // $temp = null; // for ($i=0;$i<strlen($url); $i++) @@ -51,6 +50,11 @@ function encodeUrl($url) return $url; } +function titleForRedirect($title) +{ + return html_entity_decode(encodeUrl($title),ENT_QUOTES,DEFAULT_CHARSET); +} + // function encodeUrl($url) // { // $url = str_replace(' ','-',$url); |