]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
Add support for regexp and like operators in accounting report generator
authorkkalev <kkalev>
Mon, 14 Apr 2003 22:17:43 +0000 (22:17 +0000)
committerkkalev <kkalev>
Mon, 14 Apr 2003 22:17:43 +0000 (22:17 +0000)
Changelog
htdocs/accounting.php3

index a2fce1161d34fdd1d1adcc6ec17bd3ff72588dad..7fbd5de9856fe29b6a101b7b4ece68738270449f 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -18,6 +18,7 @@ Ver 1.63:
 * 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
index 05ecc3911d28615501d83d7e278e1287655445ce..33f2cd0f1fb26bbf57b079ea75df5894171863d2 100644 (file)
@@ -23,7 +23,7 @@ EOM;
        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);