I2PSnark: Fix GUI html tag for adding a torrent, it was missing a space.

This commit is contained in:
sponge
2011-09-02 05:02:42 +00:00
parent f4e64d9df7
commit 5f7983ca17
2 changed files with 4 additions and 1 deletions

View File

@@ -1191,7 +1191,7 @@ public class I2PSnarkServlet extends Default {
out.write("</span><hr>\n<table border=\"0\"><tr><td>"); out.write("</span><hr>\n<table border=\"0\"><tr><td>");
out.write(_("From URL")); out.write(_("From URL"));
out.write(":<td><input type=\"text\" name=\"newURL\" size=\"85\" value=\"" + newURL + "\""); out.write(":<td><input type=\"text\" name=\"newURL\" size=\"85\" value=\"" + newURL + "\"");
out.write("title=\""); out.write(" title=\"");
out.write(_("Enter the torrent file download URL (I2P only), magnet link, or maggot link")); out.write(_("Enter the torrent file download URL (I2P only), magnet link, or maggot link"));
out.write("\"> \n"); out.write("\"> \n");
// not supporting from file at the moment, since the file name passed isn't always absolute (so it may not resolve) // not supporting from file at the moment, since the file name passed isn't always absolute (so it may not resolve)

View File

@@ -1,3 +1,6 @@
2011-09-02 sponge
* I2PSnark: Fix GUI html tag for adding a torrent, it was missing a space.
2011-09-01 zzz 2011-09-01 zzz
* Console: Enable color logs * Console: Enable color logs
* GeoIP: Cache country codes * GeoIP: Cache country codes