From 88f092360ed96b844d803686b0b69c36bd3b0079 Mon Sep 17 00:00:00 2001 From: kkalev Date: Tue, 7 Sep 2004 11:42:21 +0000 Subject: [PATCH] Fix a small bug in user_admin.php3 found by Joerg Staedele --- Changelog | 1 + htdocs/user_admin.php3 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index dd1d365..6726664 100644 --- 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) diff --git a/htdocs/user_admin.php3 b/htdocs/user_admin.php3 index 18b0fa3..d98945b 100644 --- a/htdocs/user_admin.php3 +++ b/htdocs/user_admin.php3 @@ -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'; } -- 2.39.5