* Update the README file with notes about the scripts present in the bin folder
* Add a <?php tag instead of a <?. Bug noted by Isam Ishaq <isam@planet.edu>
* Add support for regexp and like operators in accounting report generator
+* Limit the split() to 2 elements in lib/defaults.php3
Ver 1.62:
* Remove one sql query from user_admin which was not needed.
* Instead of a query like "LIKE 'YYYY-MM-DD%'" use "AcctStopTime >= 'YYYY-MM-DD 00:00:00 AND AcctStopTime
$val=chop($val);
if (ereg('^[[:space:]]*#',$val) || ereg('^[[:space:]]*$',$val))
continue;
- list($key,$v)=split(":[[:space:]]*",$val);
+ list($key,$v)=split(":[[:space:]]*",$val,2);
$text_default_vals["$key"][0]="$v";
$text_default_vals["$key"]['count']++;
}