mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 02:36:10 +03:00
Remove maxlength limit from RSS feeds in WebUI
URL's and feed names including paths could be longer then 100 characters, so the limit was removed.
This commit is contained in:
parent
17205802ec
commit
65636e644f
3 changed files with 3 additions and 3 deletions
|
@ -68,7 +68,7 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(Feed URL:)QBT_TR[CONTEXT=RSSWidget]</p>
|
||||
<input type="text" id="feedURL" value="" maxlength="100" style="width: 320px;" />
|
||||
<input type="text" id="feedURL" value="" style="width: 320px;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(OK)QBT_TR[CONTEXT=HttpServer]" id="submitButton" />
|
||||
</div>
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(Folder name:)QBT_TR[CONTEXT=RSSWidget]</p>
|
||||
<input type="text" id="folderName" value="" maxlength="100" style="width: 320px;" />
|
||||
<input type="text" id="folderName" value="" style="width: 320px;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(OK)QBT_TR[CONTEXT=HttpServer]" id="submitButton" />
|
||||
</div>
|
||||
|
|
|
@ -78,7 +78,7 @@
|
|||
<body>
|
||||
<div style="padding: 10px 10px 0px 10px;">
|
||||
<p style="font-weight: bold;">QBT_TR(New feed name:)QBT_TR[CONTEXT=RSSWidget]</p>
|
||||
<input type="text" id="rename" value="" maxlength="100" style="width: 320px;" />
|
||||
<input type="text" id="rename" value="" style="width: 320px;" />
|
||||
<div style="text-align: center; padding-top: 10px;">
|
||||
<input type="button" value="QBT_TR(Save)QBT_TR[CONTEXT=HttpServer]" id="renameButton" />
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue