]> git.sur5r.net Git - contagged/commitdiff
fixed international prefix in callto: links origin/HEAD origin/master sur5r.net/master
authorAndreas Gohr <gohr@cosmocode.de>
Tue, 31 May 2011 11:05:22 +0000 (13:05 +0200)
committerAndreas Gohr <gohr@cosmocode.de>
Tue, 31 May 2011 11:05:22 +0000 (13:05 +0200)
inc/smarty/plugins/modifier.escape.php

index f32d7db90cc05a254119c0a5378068b3afb6777d..7d3230ba73e429cb688e5e5b4906c9413df27486 100644 (file)
@@ -47,7 +47,7 @@ function smarty_modifier_escape($string, $esc_type = 'html', $char_set = 'ISO-88
             return $return;
 
         case 'phone':
-            $return = str_replace('+','0',$string);
+            $return = str_replace('+','00',$string);
             $return = preg_replace('/[^0-9]+/','',$return);
             return $return;