Ticket #7480: 7480-fix-prefinput-manual-custom-schedules.diff

File 7480-fix-prefinput-manual-custom-schedules.diff, 1.7 KB (added by Nick Morrott <knowledgejunkie (at) gmail (dot) com>, 14 years ago)

Adds timestretch/preferred input setting for manual/custom rules

  • mythplugins/mythweb/modules/tv/schedules_custom.php

     
    9292            $schedule->maxepisodes   = intval($_POST['maxepisodes']);
    9393            $schedule->startoffset   = intval($_POST['startoffset']);
    9494            $schedule->endoffset     = intval($_POST['endoffset']);
     95            $schedule->tsdefault     = $_POST['timestretch'];
     96            $schedule->prefinput     = $_POST['prefinput'];
    9597        // Some settings specific to manual recordings (since we have no program to match against)
    9698            $schedule->chanid        = $_POST['channel'];
    9799            $schedule->station       = $Channels[$schedule->chanid]->callsign;
  • mythplugins/mythweb/modules/tv/schedules_manual.php

     
    7777            $schedule->maxepisodes   = intval($_POST['maxepisodes']);
    7878            $schedule->startoffset   = intval($_POST['startoffset']);
    7979            $schedule->endoffset     = intval($_POST['endoffset']);
     80            $schedule->tsdefault     = $_POST['timestretch'];
     81            $schedule->prefinput     = $_POST['prefinput'];
    8082        // Some settings specific to manual recordings (since we have no program to match against)
    8183            $schedule->chanid        = $_POST['channel'];
    8284            $schedule->station       = $Channels[$schedule->chanid]->callsign;