Your message dated Mon, 16 Jan 2006 19:17:05 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#335149: fixed in freeradius 1.1.0-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 22 Oct 2005 01:44:31 +0000
>From [EMAIL PROTECTED] Fri Oct 21 18:44:31 2005
Return-path: <[EMAIL PROTECTED]>
Received: from user019.wavelan.no (mail.wavelan.no) [217.144.238.19] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1ET8Qw-0001D2-00; Fri, 21 Oct 2005 18:44:31 -0700
Received: from localhost.localdomain (unknown [217.144.238.7])
        by mail.wavelan.no (Postfix) with ESMTP id 827EF2382AA;
        Sat, 22 Oct 2005 03:44:27 +0200 (CEST)
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Arve Seljebu <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: freeradius-dialupadmin: Max Results aka pagesize always falls back to
 default value (10 results)
X-Mailer: reportbug 3.8
Date: Sat, 22 Oct 2005 03:44:49 +0200
Message-Id: <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: freeradius-dialupadmin
Version: 1.0.2-4
Severity: normal


This is because is_int [1] is used on a post input instead of is_numeric [2]. 
Pagesize actually works in user_stats.php3, but this is a spell error 
on the variable $pagesize.

[1] http://www.php.net/manual/en/function.is-int.php
[2] http://www.php.net/manual/en/function.is-numeric.php


Diff:


--- badusers.php3       2005-10-22 03:33:28.418649000 +0200
+++ /usr/share/freeradius-dialupadmin/htdocs/badusers.php3      2005-10-22 
03:35:04.271077664 +0200
@@ -31,7 +31,7 @@

 $num = 0;
 $pagesize = ($pagesize) ? $pagesize : 10;
-if (!is_int($pagesize))
+if (!is_numeric($pagesize) && $pagesize != 'all')
         $pagesize = 10;
 $limit = ($pagesize == 'all') ? '' : "LIMIT $pagesize";
 $selected[$pagesize] = 'selected';


--- failed_logins.php3  2004-04-20 15:14:18.000000000 +0200
+++ /usr/share/freeradius-dialupadmin/htdocs/failed_logins.php3 2005-10-22 
03:10:46.037762824 +0200
@@ -33,7 +33,7 @@
 $prev_str = da_sql_escape_string($prev_str);

 $pagesize = ($pagesize) ? $pagesize : 10;
-if (!is_int($pagesize))
+if (!is_numeric($pagesize) && $pagesize != 'all')
        $pagesize = 10;
 $limit = ($pagesize == 'all') ? '' : "LIMIT $pagesize";
 $selected[$pagesize] = 'selected';


--- user_accounting.php3        2004-04-06 21:37:48.000000000 +0200
+++ /usr/share/freeradius-dialupadmin/htdocs/user_accounting.php3       
2005-10-22 03:18:35.053461600 +0200
@@ -29,7 +29,7 @@
 $prev_str = ($prev_str != '') ? "$prev_str" : date($config[sql_date_format], 
$now - 604800 );
 $num = 0;
 $pagesize = ($pagesize) ? $pagesize : 10;
-if (!is_int($pagesize))
+if (!is_numeric($pagesize) && $pagesize != 'all')
        $pagesize = 10;
 $limit = ($pagesize == 'all') ? '' : "LIMIT $pagesize";
 $selected[$pagesize] = 'selected';


--- user_stats.php3     2004-04-20 15:14:19.000000000 +0200
+++ /usr/share/freeradius-dialupadmin/htdocs/user_stats.php3    2005-10-22 
03:20:23.803929016 +0200
@@ -31,8 +31,8 @@
 $start = da_sql_escape_string($start);
 $stop = da_sql_escape_string($stop);
 $pagesize = ($pagesize) ? $pagesize : 10;
-if (!is_int($pagesize))
-       $pagezise = 10;
+if (!is_numeric($pagesize) && $pagesize != 'all')
+       $pagesize = 10;
 $limit = ($pagesize == 'all') ? '' : "LIMIT $pagesize";
 $selected[$pagesize] = 'selected';
 $order = ($order) ? $order : $config[general_accounting_info_order];


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages freeradius-dialupadmin depends on:
ii  apache [httpd]            1.3.33-6sarge1 versatile, high-performance HTTP s
ii  apache-ssl [httpd]        1.3.33-6sarge1 versatile, high-performance HTTP s
ii  php4                      4:4.3.10-16    server-side, HTML-embedded scripti

-- no debconf information

---------------------------------------
Received: (at 335149-close) by bugs.debian.org; 17 Jan 2006 03:20:45 +0000
>From [EMAIL PROTECTED] Mon Jan 16 19:20:45 2006
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1EyhLF-0007lE-2C; Mon, 16 Jan 2006 19:17:05 -0800
From: Paul Hampson <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.65 $
Subject: Bug#335149: fixed in freeradius 1.1.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 16 Jan 2006 19:17:05 -0800
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: freeradius
Source-Version: 1.1.0-1

We believe that the bug you reported is fixed in the latest version of
freeradius, which is due to be installed in the Debian FTP archive:

freeradius-dialupadmin_1.1.0-1_all.deb
  to pool/main/f/freeradius/freeradius-dialupadmin_1.1.0-1_all.deb
freeradius-iodbc_1.1.0-1_i386.deb
  to pool/main/f/freeradius/freeradius-iodbc_1.1.0-1_i386.deb
freeradius-krb5_1.1.0-1_i386.deb
  to pool/main/f/freeradius/freeradius-krb5_1.1.0-1_i386.deb
freeradius-ldap_1.1.0-1_i386.deb
  to pool/main/f/freeradius/freeradius-ldap_1.1.0-1_i386.deb
freeradius-mysql_1.1.0-1_i386.deb
  to pool/main/f/freeradius/freeradius-mysql_1.1.0-1_i386.deb
freeradius_1.1.0-1.diff.gz
  to pool/main/f/freeradius/freeradius_1.1.0-1.diff.gz
freeradius_1.1.0-1.dsc
  to pool/main/f/freeradius/freeradius_1.1.0-1.dsc
freeradius_1.1.0-1_i386.deb
  to pool/main/f/freeradius/freeradius_1.1.0-1_i386.deb
freeradius_1.1.0.orig.tar.gz
  to pool/main/f/freeradius/freeradius_1.1.0.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Paul Hampson <[EMAIL PROTECTED]> (supplier of updated freeradius package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sun, 15 Jan 2006 13:34:13 +1100
Source: freeradius
Binary: freeradius-mysql freeradius-krb5 freeradius freeradius-iodbc 
freeradius-ldap freeradius-dialupadmin
Architecture: source i386 all
Version: 1.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Paul Hampson <[EMAIL PROTECTED]>
Changed-By: Paul Hampson <[EMAIL PROTECTED]>
Description: 
 freeradius - a high-performance and highly configurable RADIUS server
 freeradius-dialupadmin - set of PHP scripts for administering a FreeRADIUS 
server
 freeradius-iodbc - iODBC module for FreeRADIUS server
 freeradius-krb5 - kerberos module for FreeRADIUS server
 freeradius-ldap - LDAP module for FreeRADIUS server
 freeradius-mysql - MySQL module for FreeRADIUS server
Closes: 333704 335149 343779 344606
Changes: 
 freeradius (1.1.0-1) unstable; urgency=low
 .
   * ReDebianise upstream tarball:
     - Deleted RFCs: 2243 2289 2433 2548 2618 2619 2620 2621 2716 2759 2809 2865
                     2866 2867 2868 2869 2882 2924 3162 3575 3576 3579 3580
                     draft-kamath-pppext-eap-mschapv2-00
 .
   * New FreeRADIUS modules marked stable by new upstream release
     - rlm_perl
     - rlm_sqlcounter
     - rlm_sql_log + radsqlrelay
     - rlm_otp (formerly rlm_x99_token, not built as it depends on OpenSSL)
 .
   * Remove upstream-integrated patches:
     - 02_EAP-SIM_doesnt_need_openssl
     - 03_X99_is_not_stable
     - 07_manpage_fixups
     - 09_use_crypth_if_we_have_it
     - 10_escape_entire_ldap_string
     - 11_dont_xlat_possibly_bad_usernames_in_bad_accounting_packets
     - 12_dialup_admin_various_fixes
 .
   * More dialup-admin fixes from Arve Seljebu
     - Fix redirects in dialup-admin pages on servers with
       register_globals turned off.
       Closes: #333704
     - HTTP form fields will always fail is_int, use in_numeric instead
       Closes: #335149
     - Created 12_more_dialup_admin_various_fixes
 .
   * Update to Policy 3.6.2.0
   * Upgrade Debhelper support to V5
   * Don't install the .in files with the examples
   * Prefer libmysqlclient15-dev
     Closes: #343779
   * Shared secrets can only be 31 characters long, note this in clients.conf
     - Created 02_document_actual_shared_secret_maximum_length
     Closes: 344606
   * Added support for lsb-init functions
Files: 
 5531447550f7877c1e04ff3a61d87d7e 888 net optional freeradius_1.1.0-1.dsc
 0484969d08232244043665fff1bfd87c 2065012 net optional 
freeradius_1.1.0.orig.tar.gz
 40b52fc98b16e932102e0e2d481373b6 4920 net optional freeradius_1.1.0-1.diff.gz
 e1953acd1cae846fd17decf3a3032146 113746 net optional 
freeradius-dialupadmin_1.1.0-1_all.deb
 f4e435d6e6e7cd02333afc854c2d4a3c 1417108 net optional 
freeradius_1.1.0-1_i386.deb
 3f168ed87697cd0df341c5ce9365bdc1 37770 net optional 
freeradius-krb5_1.1.0-1_i386.deb
 0df73eb9ddb7a5c49df545a9e385e1cb 80536 net optional 
freeradius-ldap_1.1.0-1_i386.deb
 3c3b77a1182f568fb0bac9808f6c9321 41318 net optional 
freeradius-mysql_1.1.0-1_i386.deb
 23e39e4505691289875c44a63a333caf 35976 net optional 
freeradius-iodbc_1.1.0-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDzF4eA8ACPgVBDpcRAvdCAJ4zPv9pDKLkLbIcM5ZuxexU8KxrRQCgzXJz
viTxliU5tXFAmVZ8cksJ2ng=
=D/VB
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to