Changeset 1693 for pykota/trunk/cgi-bin/printquota.cgi
- Timestamp:
- 09/02/04 12:34:09 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/cgi-bin/printquota.cgi
r1636 r1693 24 24 # 25 25 # $Log$ 26 # Revision 1.36 2004/09/02 10:34:09 jalet 27 # Fixed problem with mod_auth_ldap Apache module 28 # 26 29 # Revision 1.35 2004/07/24 20:10:10 jalet 27 30 # Incorrect number of parameters in error method … … 246 249 printers = self.storage.getMatchingPrinters("*") 247 250 remuser = os.environ.get("REMOTE_USER", "root") 251 252 # special hack to accomodate mod_auth_ldap Apache module 253 try : 254 remuser = remuser.split("=")[1].split(",")[0] 255 except IndexError : 256 pass 257 248 258 if remuser == "root" : 249 259 if self.form.has_key("ugmask") :