
g8ecj at gilks
Mar 23, 2010, 5:30 PM
Post #1 of 1
(264 views)
Permalink
|
I collected this patch from somewhere (can't find it anywhere now!!) a month or two ago for 0.22 to implement the link back to the Program Listing page after clicking "Update Recording Settings" when scheduling a show from the listing page. This is against 0.23-fixes since this link (which was present in 0.21) is still missing. Index: mythplugins/mythweb/modules/tv/tmpl/default/detail.php =================================================================== --- mythplugins/mythweb/modules/tv/tmpl/default/detail.php (revision 23787) +++ mythplugins/mythweb/modules/tv/tmpl/default/detail.php (working copy) @@ -400,6 +400,9 @@ echo '<a href="', root_url, 'tv/schedules">', t('Back to the recording schedules'), '</a>'; + if (isset($_SESSION['list_time'])) echo '<a href="', root_url, 'tv/list?time=', $_SESSION['list_time'], '">', + t('Back to the program listing'), + '</a>'; } else { if ($program->endtime > time()) { -- Robin Gilks _______________________________________________ mythtv-dev mailing list mythtv-dev [at] mythtv http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev
|