1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 19:44:09 +02:00

New feature: (work-in-progress) Allow plugins to hook into the batch-dropdown options in AdminUI list mode.

This commit is contained in:
Cameron
2016-11-05 17:09:39 -07:00
parent 0156dd58f7
commit 6939f7b3eb
2 changed files with 33 additions and 2 deletions

View File

@@ -3923,7 +3923,7 @@ class e_form
if(!$value) $value = '0';
if($parms)
{
if(!isset($parms['sep'])) $value = number_format($value, $parms['decimals']);
if(!isset($parms['sep'])) $value = number_format($value, varset($parms['decimals'],0));
else $value = number_format($value, $parms['decimals'], vartrue($parms['point'], '.'), vartrue($parms['sep'], ' '));
}