From: Nicolas Boisselier Date: Tue, 27 Dec 2016 19:03:19 +0000 (+0000) Subject: fix row_parse bug X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=17170bb312b9b759236be64ea8296e3de6585062;p=nb.git fix row_parse bug --- diff --git a/lib/php/out.php b/lib/php/out.php index d716404d..77fe9956 100644 --- a/lib/php/out.php +++ b/lib/php/out.php @@ -446,7 +446,7 @@ Class Out extends Nb { */ public static function row_parse(&$row,$o=[]) { foreach ($row as $k => $v) { - $v = out::format($v,null,$o); + $row[$k] = out::format($v,null,$o); } if (isset($o['row_parse_post'])) { $o['row_parse_post']($row);