Contact: fumanchu@aminus.org

Log in as guest/misc to create tickets

Changeset 71

Show
Ignore:
Timestamp:
04/03/06 22:55:12
Author:
fumanchu
Message:

Removed apache.DECLINED thanks to Graham D and http://issues.apache.org/jira/browse/MODPYTHON-129

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • fixupsspi.py

    r70 r71  
    4646        if "\\" in req.user: 
    4747            req.user = req.user.split("\\", 1)[1] 
    48         return apache.OK 
    49     else: 
    50         return apache.DECLINED 
     48    return apache.OK 
    5149 
    5250def lcase_user(req): 
    5351    if req.user: 
    5452        req.user = req.user.lower() 
    55         return apache.OK 
    56     else: 
    57         return apache.DECLINED 
     53    return apache.OK 
    5854