Skip to content

Commit

Permalink
Fix rendering of disabled.html for 'Sub URI' sites
Browse files Browse the repository at this point in the history
The disabled.html template uses the isso_host_script variable, but
that variable was not being passed when rendering that template
file.
  • Loading branch information
jwatt committed Nov 22, 2019
1 parent 0f4e72c commit 553cc86
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions isso/views/comments.py
Expand Up @@ -1074,7 +1074,8 @@ def demo(self, env, req):

def login(self, env, req):
if not self.isso.conf.getboolean("admin", "enabled"):
return render_template('disabled.html')
isso_host_script = self.isso.conf.get("server", "public-endpoint") or local.host
return render_template('disabled.html', isso_host_script=isso_host_script)
data = req.form
password = self.isso.conf.get("admin", "password")
if data['password'] and data['password'] == password:
Expand All @@ -1096,7 +1097,7 @@ def login(self, env, req):
def admin(self, env, req):
isso_host_script = self.isso.conf.get("server", "public-endpoint") or local.host
if not self.isso.conf.getboolean("admin", "enabled"):
return render_template('disabled.html')
return render_template('disabled.html', isso_host_script=isso_host_script)
try:
data = self.isso.unsign(req.cookies.get('admin-session', ''),
max_age=60 * 60 * 24)
Expand Down

0 comments on commit 553cc86

Please sign in to comment.