Commit a7d8c1f1 authored by Shane Hathaway's avatar Shane Hathaway

Added a deprecated alias for UnrestrictedUser, Super, for user folder

products that depend on the old class name.
parent 5cf029d7
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
############################################################################## ##############################################################################
"""Access control package""" """Access control package"""
__version__='$Revision: 1.130 $'[11:-2] __version__='$Revision: 1.131 $'[11:-2]
import Globals, socket, ts_regex, SpecialUsers import Globals, socket, ts_regex, SpecialUsers
import os import os
...@@ -1035,3 +1035,5 @@ def absattr(attr): ...@@ -1035,3 +1035,5 @@ def absattr(attr):
def reqattr(request, attr): def reqattr(request, attr):
try: return request[attr] try: return request[attr]
except: return None except: return None
Super = UnrestrictedUser # Note: use of the Super alias is deprecated.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment