fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [8170] fix characters inserted as entities


From: Sigurd Nes
Subject: [Fmsystem-commits] [8170] fix characters inserted as entities
Date: Wed, 23 Nov 2011 11:23:32 +0000

Revision: 8170
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=8170
Author:   sigurdne
Date:     2011-11-23 11:23:32 +0000 (Wed, 23 Nov 2011)
Log Message:
-----------
fix characters inserted as entities

Modified Paths:
--------------
    trunk/property/inc/cron/default/catch_ppc.php

Modified: trunk/property/inc/cron/default/catch_ppc.php
===================================================================
--- trunk/property/inc/cron/default/catch_ppc.php       2011-11-23 08:02:28 UTC 
(rev 8169)
+++ trunk/property/inc/cron/default/catch_ppc.php       2011-11-23 11:23:32 UTC 
(rev 8170)
@@ -215,7 +215,7 @@
                                                        continue;
                                                }
 
-                                               $insert_value = 
html_entity_decode(trim($var_result[$field]));
+                                               $insert_value = 
trim($var_result[$field]);
                                                switch ( $field_info->type )
                                                {
                                                        case 'string':
@@ -246,7 +246,7 @@
                                                                $insert_value = 
date( $this->db->date_format(), strtotime( $insert_value ) );
                                                                break;
                                                }
-                                               $insert_values[] = 
utf8_encode($insert_value);
+                                               $insert_values[] = 
$insert_value;
                                                $cols[] = $field;
                                        }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]