]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
Fix a small bug in user_admin.php3 found by Joerg Staedele
authorkkalev <kkalev>
Tue, 7 Sep 2004 11:42:21 +0000 (11:42 +0000)
committerkkalev <kkalev>
Tue, 7 Sep 2004 11:42:21 +0000 (11:42 +0000)
Changelog
htdocs/user_admin.php3

index dd1d3656bda1cf1be39008793c03ea75edaebe49..672666439576ebeffc56d97c48e4a7392cab4948 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -23,6 +23,7 @@ Ver 1.75:
   variables.
 * Make pagesize 'all' work again. Bug found by apellido jr., wilfredo p.
 * Make 'Add NAS' function in the nas admin page more easily accessible
+* Fix a small bug in user_admin.php3 found by Joerg Staedele
 Ver 1.72:
 * Move the xlat function to a separate file in lib/xlat.php3
 * Add a lib/sql/nas_list.php3 to also get the nas list from sql (naslist.conf still works)
index 18b0fa3f3bc96964625f948f6e236e3c48cf00b0..d98945bfb7a537ac5ee4ffe1f9cf1f3f18b389a6 100644 (file)
@@ -246,7 +246,7 @@ if ($link){
                                $lastlog_input = 'not available';
                        $lastlog_output = $row['acctoutputoctets'];
                        if ($lastlog_output)
-                               $lastlog_input = bytes2str($lastlog_output);
+                               $lastlog_output = bytes2str($lastlog_output);
                        else
                                $lastlog_output = 'not available';
                }