diff options
author | Georg Brandl <georg@python.org> | 2007-08-03 07:40:36 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-03 07:40:36 +0000 |
commit | 98f098e4be35fc613f3047d00abe9d4998169fb3 (patch) | |
tree | fb5ae04bee22648d09b81306ca834b6668430b9b /sphinx/web/application.py | |
parent | dbeb13600f2eea152020cadd7b138aea75dfeedd (diff) | |
download | sphinx-git-98f098e4be35fc613f3047d00abe9d4998169fb3.tar.gz |
Fix the modindex checkboxes if none is selected.
Diffstat (limited to 'sphinx/web/application.py')
-rw-r--r-- | sphinx/web/application.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/web/application.py b/sphinx/web/application.py index 039889259..c9aab9661 100644 --- a/sphinx/web/application.py +++ b/sphinx/web/application.py @@ -348,7 +348,7 @@ class DocumentationApplication(object): } for x in sorted(most_frequent)] showpf = None - newpf = req.args.get('pf') + newpf = req.args.get('newpf') sesspf = req.session.get('pf') if newpf or sesspf: yield NoCache |