mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-03 18:03:37 +00:00
Merge pull request #1002 from JackDandy/feature/ChangeLinkWebroot
Change a link to include webroot for "plot overview for this ended sh…
This commit is contained in:
commit
c96f18a7e8
2 changed files with 2 additions and 1 deletions
|
@ -125,6 +125,7 @@
|
||||||
* Change order of notifiers in Notifications config tabs
|
* Change order of notifiers in Notifications config tabs
|
||||||
* Remove Pushalot notifier
|
* Remove Pushalot notifier
|
||||||
* Remove XBMC notifier
|
* Remove XBMC notifier
|
||||||
|
* Change a link to include webroot for "plot overview for this ended show"
|
||||||
|
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
|
|
|
@ -1278,7 +1278,7 @@ class Home(MainHandler):
|
||||||
+ '<a href="%s/home/editShow?show=%s&tvsrc=0&srcid=%s#core-component-group3">replace it here</a>' % (
|
+ '<a href="%s/home/editShow?show=%s&tvsrc=0&srcid=%s#core-component-group3">replace it here</a>' % (
|
||||||
sickbeard.WEB_ROOT, show, show)
|
sickbeard.WEB_ROOT, show, show)
|
||||||
+ ('', '<br>%s' % show_message)[0 < len(show_message)])
|
+ ('', '<br>%s' % show_message)[0 < len(show_message)])
|
||||||
t.force_update = 'home/updateShow?show=%d&force=1&web=1' % showObj.indexerid
|
t.force_update = '%s/home/updateShow?show=%d&force=1&web=1' % (sickbeard.WEB_ROOT, showObj.indexerid)
|
||||||
if not sickbeard.showQueueScheduler.action.isBeingAdded(showObj): # @UndefinedVariable
|
if not sickbeard.showQueueScheduler.action.isBeingAdded(showObj): # @UndefinedVariable
|
||||||
if not sickbeard.showQueueScheduler.action.isBeingUpdated(showObj): # @UndefinedVariable
|
if not sickbeard.showQueueScheduler.action.isBeingUpdated(showObj): # @UndefinedVariable
|
||||||
t.submenu.append(
|
t.submenu.append(
|
||||||
|
|
Loading…
Reference in a new issue