]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
Also show server:port in the user test page (so that it shows when used for server...
authorkkalev <kkalev>
Wed, 13 Nov 2002 13:12:21 +0000 (13:12 +0000)
committerkkalev <kkalev>
Wed, 13 Nov 2002 13:12:21 +0000 (13:12 +0000)
Changelog
htdocs/user_test.php3

index 1f32be3e6288b657708f84298cdbe080e849c46d..32301a10dc13a4492c5a7478ff863e166f052e68 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -11,6 +11,7 @@ Ver 1.61:
 * When searching a user in ldap through the find page only try to find the users which have a uid attribute (username)
 * Allow selecting a specific access server in the failed logins page
 * In the user admin page use AcctStartTime not AcctStopTime when calculating usage for the last 7 days
+* Also show server:port in the user test page (so that it shows when used for server checks)
 Ver 1.60:
 * Use require_once when including lib/functions.php3 in lib/sql
 * In the buttons toolbar Edit User should not be clickable.
index 177716e5150cb1d80cd0b916f2eb6bb1ce660032..60b99ee0d4377778a4ae25370ada0248e6b03643 100644 (file)
@@ -95,7 +95,8 @@ if ($test_user == 1){
                }
                $reply = file($tmp_file);
                unlink($tmp_file);
-               $msg = "<b>" . strftime('%A, %e %B %Y, %T %Z') . "</b><br><br>\n";
+               $msg = "<b>" . strftime('%A, %e %B %Y, %T %Z') . "</b><br>\n";
+               $msg .= "<b>Server: </b><i>$server:$port</i><br><br>\n";
                if (ereg('code 2', $reply[0]))
                        $msg .= "<b>Authentication was <font color=green>successful</font>";
                else if (ereg('code 3',$reply[0]))