mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-22 17:34:21 +01:00
better error message for selfmodify if auth disabled
This commit is contained in:
parent
1a37cb23a9
commit
7241b6f8ee
@ -881,7 +881,10 @@ class LdapCherry(object):
|
|||||||
sess = cherrypy.session
|
sess = cherrypy.session
|
||||||
user = str(sess.get(SESSION_KEY, None))
|
user = str(sess.get(SESSION_KEY, None))
|
||||||
if self.auth_mode == 'none':
|
if self.auth_mode == 'none':
|
||||||
return "not available without authentication disabled"
|
return self.temp_error.render(is_admin=is_admin,
|
||||||
|
alert = 'warning',
|
||||||
|
message="Not accessible with authentication disabled."
|
||||||
|
)
|
||||||
if cherrypy.request.method.upper() == 'POST':
|
if cherrypy.request.method.upper() == 'POST':
|
||||||
params = self._parse_params(params)
|
params = self._parse_params(params)
|
||||||
self._selfmodify(params)
|
self._selfmodify(params)
|
||||||
|
Loading…
Reference in New Issue
Block a user