aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-06-08 09:12:43 +0200
committercedricbonhomme <devnull@localhost>2011-06-08 09:12:43 +0200
commitb75135331223acc060a9d255eb22e7e460e54233 (patch)
treece50f39f40484a436681a5659459734fe20a25c5 /pyAggr3g470r.py
parentMinor bugfix: wrong page redirection when changing the minimum size of a word... (diff)
downloadnewspipe-b75135331223acc060a9d255eb22e7e460e54233.tar.gz
newspipe-b75135331223acc060a9d255eb22e7e460e54233.tar.bz2
newspipe-b75135331223acc060a9d255eb22e7e460e54233.zip
Minor bugfix: Missing feed id in the URL parameter.
Diffstat (limited to 'pyAggr3g470r.py')
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 1e754af1..80145da3 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -639,7 +639,7 @@ class Root:
html += "<br /></br /><h1>Tag cloud</h1>\n<br />\n"
# Tags cloud
html += 'Minimum size of a word:'
- html += '<form method=get action="/feed/">'
+ html += """<form method=get action="/feed/%s">""" % (feed.feed_id,)
html += """<input type="number" name="word_size" value="%s" min="2" max="15" step="1" size="2">""" % (word_size,)
html += '<input type="submit" value="OK"></form>\n'
html += '<div style="width: 35%; overflow:hidden; text-align: justify">' + \
bgstack15