* Fix a problem with user_stats.php3
* 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
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
exit();
}
-$operators=array( '=','<', '>', '<=', '>=' );
+$operators=array( '=','<', '>', '<=', '>=', 'regexp', 'like' );
$link = @da_sql_pconnect ($config) or die('cannot connect to sql databse');
$fields = @da_sql_list_fields($config[sql_accounting_table],$link,$config);