Update of phpgwapi/inc

Modified Files:
     Branch: MAIN
            class.http_dav_client.inc.php lines: +3 -3

Log Message:
if you encode in utf8, you decode it when you put data up ! :)

====================================================
Index: phpgwapi/inc/class.http_dav_client.inc.php
diff -u phpgwapi/inc/class.http_dav_client.inc.php:1.13 
phpgwapi/inc/class.http_dav_client.inc.php:1.14
--- phpgwapi/inc/class.http_dav_client.inc.php:1.13     Wed Nov 30 13:13:57 2005
+++ phpgwapi/inc/class.http_dav_client.inc.php  Fri Dec  2 13:12:25 2005
@@ -512,7 +512,7 @@
                                {
                                        if ($item[$vfs_name])
                                        {
-                                               $newitem[$vfs_name] = 
$item[$vfs_name];
+                                               $newitem[$vfs_name] = 
utf8_decode($item[$vfs_name]);
                                        }
                                }

@@ -521,7 +521,7 @@
                                {
                                        if ($item[$dav_name])
                                        {
-                                               $newitem[$vfs_name] = 
$item[$dav_name];
+                                               $newitem[$vfs_name] = 
utf8_decode($item[$dav_name]);
                                        }
                                }





_______________________________________________
Phpgroupware-cvs mailing list
Phpgroupware-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/phpgroupware-cvs

Reply via email to