~ubuntu-branches/ubuntu/dapper/freeradius/dapper-updates

« back to all changes in this revision

Viewing changes to dialup_admin/html/user_admin_userinfo.html.php3

  • Committer: Bazaar Package Importer
  • Author(s): Paul Hampson
  • Date: 2004-12-29 20:19:42 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041229201942-uj2e95la965uthc7
Tags: 1.0.1-2
* freeradius-dialupadmin Suggests php4-mysql | php4-pgsql
   Closes: #279419
* Added a two-second pause to restart in init.d script
   Closes: #262635
* FreeRADIUS module packages now depend on the same source
  version of the main FreeRADIUS package.
   Closes: #284353
* FreeRADIUS-dialupadmin's default paths in admin.conf are
  now correct.
   Closes: #280942
* FreeRADIUS-dialupadmin's help.php3 can now find README.
   Closes: #280941
* Fixes stolen from 1.0.2 CVS:
  - Bug fix to make udpfromto code work
  - radrelay shouldn't dump core if it can't read a VP from the
    detail file.
  - Only initialize the random pool once.
  - In rlm_sql, don't escape characters twice.
  - In rlm_ldap, only claim Auth-Type if a plain text password is present.
  - Locking fixes in threading code
  - Fix building on gcc-4.0 by not trying to access static auth_port from
    other files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
echo <<<EOM
 
3
        <tr><td align=center bgcolor="#d0ddb0">
 
4
        Server
 
5
        </td><td>       
 
6
        <b>$lastlog_server_name</b> ($lastlog_server_ip)
 
7
        </td></tr>
 
8
        <tr><td align=center bgcolor="#d0ddb0">
 
9
        Server Port
 
10
        </td><td>
 
11
        $lastlog_server_port
 
12
        </td></tr>
 
13
        <tr><td align=center bgcolor="#d0ddb0">
 
14
        Workstation
 
15
        </td><td>
 
16
        $lastlog_callerid
 
17
        </td></tr>
 
18
        <tr><td align=center bgcolor="#d0ddb0">
 
19
        Upload
 
20
        </td><td>
 
21
        $lastlog_input
 
22
        </td></tr>
 
23
        <tr><td align=center bgcolor="#d0ddb0">
 
24
        Download
 
25
        </td><td>
 
26
        $lastlog_output
 
27
        </td></tr>
 
28
EOM;
 
29
?>