Index: modules/in-commerce/units/gateways/gw_classes/paypal.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- modules/in-commerce/units/gateways/gw_classes/paypal.php (revision 15892) +++ modules/in-commerce/units/gateways/gw_classes/paypal.php (revision ) @@ -237,6 +237,7 @@ 'BillingCountry' => '???', ); + // TODO: maybe this should be SetDBFieldsFromHash instead, because all data comes from inside. $order->SetFieldsFromHash($info); $order->SetDBField('Status', ORDER_STATUS_PROCESSED); @@ -265,4 +266,4 @@ return $success; } - } \ No newline at end of file + } Index: modules/in-commerce/units/reports/reports_event_handler.php IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== --- modules/in-commerce/units/reports/reports_event_handler.php (revision 16015) +++ modules/in-commerce/units/reports/reports_event_handler.php (revision ) @@ -785,6 +785,7 @@ } foreach($report->Records as $a_row) { + // TODO: maybe this should be SetDBFieldsFromHash instead, because all data comes from inside. $ReportItem->SetFieldsFromHash($a_row); $row = ''; foreach ($a_fields AS $field => $a_props) @@ -796,6 +797,7 @@ } // totals + // TODO: maybe this should be SetDBFieldsFromHash instead, because all data comes from inside. $ReportItem->SetFieldsFromHash($a_totals); $counter = 0; foreach ($a_fields AS $field => $a_props)