diff options
author | cedricbonhomme <devnull@localhost> | 2011-06-08 09:08:30 +0200 |
---|---|---|
committer | cedricbonhomme <devnull@localhost> | 2011-06-08 09:08:30 +0200 |
commit | 28ff2075403e64f22f858a556fefaa11af68edbd (patch) | |
tree | 6fbb988405cef6b9c49a23d1818310860b08c596 | |
parent | Added Google's +1 button (diff) | |
download | newspipe-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.
-rwxr-xr-x | pyAggr3g470r.py | 2 |
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">' + \ |