
 Jaroslav - 2011-05-03 12:03:23
 
Hi,
when Work days is empty some examples returns "Warning: number_format() expects parameter 1 to be double, string given in /var/www/lab/phpclassess/phpmydatagrid/phpmydatagrid.class.php on line 1664", for example sample2.php.
I think I found error in phpmydatagrid.class.php in function number_mask at line 1651
wrong code
if (is_null($value || is_numeric($value)==false )) return $value;
right code
if (is_null($value) || is_numeric($value)==false ) return $value;