Show
Ignore:
Timestamp:
09/06/06 09:01:54 (6 years ago)
Author:
benoitg
Message:

filter content type according to various criteria. Will be used more
extensively in the profile manager.

  • Content manager: Use content type filter to only allow Simple

content types (Content without metadata) to be used for metadata.

banner adds, or any other image rotation. Size constraints not yet
implemented

  • Move externally maintained class.phpmailer.php, class.smtp.php

into lib where they belong

  • DateTime?.php: Make class handle an empty date sensibly.
  • Network.php: Show the network again when there is only one.

It was confusing in some screens.

  • page.php: Clarify error message, and set a more reasonnable

paging cascade:

5 min, 30 min, 2 hours, 1 day, 1 week, 1 month

  • Finally fix #127
  • At last, working content scheduled display and expiration for

ContentGroups?. Archiving does not yet have a UI. Content that expires
will simply seem to disapear.

  • Fix #247 (somebody filed a bug before I commited, conveniently

saving me the need to describe it).

  • The Fix for #106 in [1089] returned non-objects, causing error

messages and not displaying what it was meant to display.

Used Guest instead of Annonymous, which will probably be

used for different purpose in the future.

This re-fix does not include duplicate counting yet.

Splash users are not the only users that could log-in multiple times.

I don't have a staging server here, a fix will be

commited in a few minutes if something goes wrong.

  • Cleanup coments.
  • Sync schemas
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Authenticators/AuthenticatorRadius.php

    r1031 r1090  
    7676     * 
    7777     * @var string 
    78      * 
    79      * @access private 
     78 
    8079     */ 
    8180    private $mRadius_hostname; 
     
    8584     * 
    8685     * @var int 
    87      * 
    88      * @access private 
     86 
    8987     */ 
    9088    private $mRadius_auth_port; 
     
    9492     * 
    9593     * @var int 
    96      * 
    97      * @access private 
     94 
    9895     */ 
    9996    private $mRadius_acct_port; 
     
    103100     * 
    104101     * @var string 
    105      * 
    106      * @access private 
     102 
    107103     */ 
    108104    private $mRadius_secret_key; 
     
    112108     * 
    113109     * @var string 
    114      * 
    115      * @access private 
     110 
    116111     */ 
    117112    private $mRadius_encryption_method; 
     
    133128     * 
    134129     * @return void 
    135      * 
    136      * @access public 
    137130     */ 
    138131    public function __construct($account_orgin, $host = "localhost", $auth_port = 1812, $acct_port = 1813, $secret_key = "", $encryption_method = "CHAP_MD5") 
     
    176169     * @return object The actual User object if login was successfull, 
    177170     *                false otherwise. 
    178      * 
    179      * @access public 
    180171     */ 
    181172    public function login($username, $password, &$errmsg = null) 
     
    314305     * 
    315306     * @return bool Returns whether successful or not 
    316      * 
    317      * @access public 
    318307     */ 
    319308    public function acctStart($conn_id, &$errmsg = null) 
     
    383372     * 
    384373     * @return bool Returns whether successful or not 
    385      * 
    386      * @access public 
    387374     */ 
    388375    function acctUpdate($conn_id, $incoming, $outgoing, & $errmsg = null) 
     
    455442     * 
    456443     * @return bool Returns whether successful or not 
    457      * 
    458      * @access public 
    459444     */ 
    460445    function acctStop($conn_id, &$errmsg = null)