aboutsummaryrefslogtreecommitdiff
path: root/pyAggr3g470r.py
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-06-08 09:08:30 +0200
committercedricbonhomme <devnull@localhost>2011-06-08 09:08:30 +0200
commit28ff2075403e64f22f858a556fefaa11af68edbd (patch)
tree6fbb988405cef6b9c49a23d1818310860b08c596 /pyAggr3g470r.py
parentAdded Google's +1 button (diff)
downloadnewspipe-28ff2075403e64f22f858a556fefaa11af68edbd.tar.gz
newspipe-28ff2075403e64f22f858a556fefaa11af68edbd.tar.bz2
newspipe-28ff2075403e64f22f858a556fefaa11af68edbd.zip
Minor bugfix: wrong page redirection when changing the minimum size of a word for the generation of tag clouds in the feed/ page.
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 c30e8716..1e754af1 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="/management/">'
+ html += '<form method=get action="/feed/">'
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