mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 01:43:37 +00:00
Merge branch 'feature/TrendingShowUriEncodeShowTitle' into develop
This commit is contained in:
commit
44e0749d1e
2 changed files with 4 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
|||
* Change Help and Info icon sprites to color and text of Arguments if unused
|
||||
* Change sharper looking heart image on the Add Show page
|
||||
* Change Add Show on Add Trending Show Page to use the full Add New Show flow
|
||||
* Fix adding shows with titles that contain "&" on Add Trending Show page
|
||||
|
||||
|
||||
### 0.3.0 (2014-11-12 14:30:00 UTC)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#import sickbeard
|
||||
#import datetime
|
||||
#import re
|
||||
#import urllib
|
||||
#from sickbeard.common import *
|
||||
#from sickbeard import sbdatetime
|
||||
#from sickbeard.helpers import anon_url
|
||||
|
@ -148,7 +149,8 @@
|
|||
#if 'ExistsInLibrary' in $cur_show['tvdb_id']:
|
||||
<p style="line-height: 1.5; padding: 2px 5px 3px">In library</p>
|
||||
#else
|
||||
<a href="$sbRoot/home/addTraktShow?indexer_id=${cur_show['tvdb_id']}&showName=${cur_show['title']}" class="btn btn-xs">Add Show</a>
|
||||
#set $encoded_show_title = urllib.quote($cur_show['title'].encode("utf-8"))
|
||||
<a href="$sbRoot/home/addTraktShow?indexer_id=${cur_show['tvdb_id']}&showName=${encoded_show_title}" class="btn btn-xs">Add Show</a>
|
||||
#end if
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue