Merge pull request #1235 from abeloin/patch-tvrage_info_special

Add notice in addShow for special with TVRage
This commit is contained in:
echel0n 2015-01-29 15:00:34 -08:00
commit 888406faaf
1 changed files with 3 additions and 1 deletions

View File

@ -60,7 +60,8 @@
<select name="providedIndexer" id="providedIndexer" class="form-control form-control-inline input-sm">
<option value="0" #if $provided_indexer == 0 then "selected=\"selected\"" else ""#>All Indexers</option>
#for $indexer in $indexers
<option value="$indexer" #if $provided_indexer == $indexer then "selected=\"selected\"" else ""#>$indexers[$indexer]</option>
<option value="$indexer" #if $provided_indexer == $indexer then "selected=\"selected\"" else ""#>
#if $indexers[$indexer] == 'TVRage' then ''.join(($indexers[$indexer], ' **')) else $indexers[$indexer]#</option>
#end for
</select>
&nbsp;
@ -69,6 +70,7 @@
<br /><br />
<b>*</b> This will only affect the language of the retrieved metadata file contents and episode filenames.<br />
This <b>DOES NOT</b> allow SickRage to download non-english TV episodes!<br />
<b>**</b> The indexer implementation doesn't currently support specials.<br />
<br />
<div id="searchResults" style="height: 100%;"><br/></div>
#end if