diff --git a/CREDITS b/CREDITS index ecc85298c..f8a2bdd66 100644 --- a/CREDITS +++ b/CREDITS @@ -19,51 +19,24 @@ Daniel James Paul Baranowski (paul.baranowski@sourcefabric.org) Role: Project Manager -Version 1.8.0 -------------- --The calendar is now faster by 5-8X. For example, if the "month" calendar view had shows scheduled for every hour of every day, it used to take 16 seconds to load. Now it takes 2 seconds. --Users can now edit shows. Now it is possible to change a show after it is created - you can change the simple stuff, like "Name", "Description", and "URL", but also change the complex stuff like repeat days and rebroadcast days. --It is possible to have up to ten rebroadcast shows now, previously it was only up to five. Rebroadcast shows are hidden --New improved look & feel of the calendar (thanks to the "FullCalendar" jQuery project). --Installation now puts files in standard locations in the Linux file hierarchy, which prepares the project to be accepted into Ubuntu and Debian. Also because of our wish to be part of those projects, the default output stream type is now OGG instead of MP3 -- due to MP3 licensing issues. This configuration can be changed in "/etc/airtime/liquidsoap.conf". --You now have the ability to start and stop pypo and the show recorder from the command line with the commands "airtime-pypo-start", "airtime-pypo-stop", "airtime-show-recorder-start", and "airtime-show-recorder-stop". --The installation script now has two options: --perserve to keep your existing config files, or --overwrite to replace your existing config files with new ones. --Uninstall will no longer remove your Airtime config files or remove your music storage directory. --Bug fixes: - -CC-2192 Schedule sent to pypo is not sorted by start time. - -CC-2175 Overbooking: Cut off shows when they are done - -CC-2174 Need formatting and a warning icon for the message for overbooking a show - -CC-2039 Upload file: file name cropped - -CC-2177 Schedule editing does not work under Firefox 4 - Version 1.7.0 ------------- --Recording and automatic scheduling/broadcasting of live shows - -Recording/rebroadcast status of a show is shown in "Now Playing" and "Calendar" - -Can rebroadcast a show at multiple times and dates --Automatic upload of recorded shows to Soundcloud --Frontend JQuery widgets for public-facing websites to show your visitors what's playing and the upcoming schedule --Ability to over-book a show and automatically cut and fade out song if it goes beyond the show time --Ability to delete audio files --Ability to cancel the currently playing show --Any changes to the schedule are immediately seen by the playout engine - -In version 1.6, you had to make sure that your show was ready to go 30 seconds before it started. --Upgrade support (should be able to upgrade from any version, unlike 1.6.1 which required an uninstall of 1.6.0 first) --"Now Playing" list view: - -audio items are now grouped by show. - -If a show is not fully scheduled, the user is notified how many seconds of silence are at the end of the show in this View. - -Audio items that play past the show's end time have a visual notification that they will be cut off --Ability to change metadata tag display format for web streams --Config files moved to /etc/airtime. This means all config files are in one convenient location and separated from the code, so you can -upgrade your code independently of your config files. --Redesign of Preferences screen --Bug fixes: - -CC-2082 OGG stream dies after every song when using MPlayer - -CC-1894 Warn users about time zone differences or clock drift problems on the server - -CC-2058 Utilities are not in the system $PATH - -CC-2051 Unable to change user password - -CC-2030 Icon needed for Cue In/Out - -CC-1955 Special character support in the library search +Naomi Aro (naomi.aro@sourcefabric.org) + Role: Software Developer + +Martin Konecny (martin.konecny@sourcefabric.org) + Role: Software Developer + +Ofir Gal (ofir.gal@sourcefabric.org) + Role: QA + +Daniel James + Role: Documentor & QA + +Paul Baranowski (paul.baranowski@sourcefabric.org) + Role: Project Manager + Version 1.6.1 ------------- diff --git a/Changelog b/Changelog index 398838edf..3aba0b7ed 100644 --- a/Changelog +++ b/Changelog @@ -1,10 +1,36 @@ 1.8.0 - April 19, 2011 - * Ability to edit a show - * Speedup of calendar (approx to 5-8x faster now) - * Install process now put files in the right place for linux systems - * Improvements to upgrade framework + * The biggest feature of this release is the ability to edit shows. You can + change everything from ‘Name’, ‘Description’, and ‘URL’, to repeat and + rebroadcast days. Show instances will be dynamically created or removed as + needed. Radio stations will be pleased to know they can now have up to + ten rebroadcast shows too. + * Airtime’s calendar now looks, feels and performs better than ever. Loading + a station schedule is now five to eight times faster. In our tests of 1.7, + if the month calendar had shows scheduled for every hour of every day, it + used to take 16 seconds to load. Now in 1.8 it takes two seconds. + * It is possible to have up to ten rebroadcast shows now, in 1.7 it was only + up to five. + * Airtime’s new installation script has two options for increased install + flexibility: --preserve to keep your existing config files, or --overwrite + to replace your existing config files with new ones. Uninstall no longer + removes Airtime config files or the music storage directory. + * New improved look & feel of the calendar (thanks to the "FullCalendar" + jQuery project). + * Installation now puts files in standard locations in the Linux file + hierarchy, which prepares the project to be accepted into Ubuntu and Debian. + Also because of our wish to be part of those projects, the default output + stream type is now OGG instead of MP3 -- due to MP3 licensing issues. + This configuration can be changed in "/etc/airtime/liquidsoap.conf". + * You now have the ability to start and stop pypo and the show recorder from + the command line with the commands "airtime-pypo-start", + "airtime-pypo-stop", "airtime-show-recorder-start", and + "airtime-show-recorder-stop". * Bug fixes: - o CC-2192 Schedule sent to pypo is not sorted by start time. + * CC-2192 Schedule sent to pypo is not sorted by start time. + * CC-2175 Overbooking: Cut off shows when they are done + * CC-2174 Need formatting and a warning icon for the message for overbooking a show + * CC-2039 Upload file: file name cropped + * CC-2177 Schedule editing does not work under Firefox 4 1.7.0 - April 4, 2011 * Recording and automatic scheduling/broadcasting of live shows diff --git a/airtime_mvc/application/Bootstrap.php b/airtime_mvc/application/Bootstrap.php index 40c8e3ec6..f9a62c9f6 100644 --- a/airtime_mvc/application/Bootstrap.php +++ b/airtime_mvc/application/Bootstrap.php @@ -10,6 +10,7 @@ Propel::init(__DIR__."/configs/airtime-conf.php"); $tz = ini_get('date.timezone') ? ini_get('date.timezone') : 'UTC'; date_default_timezone_set($tz); +require_once __DIR__."/logging/Logging.php"; require_once __DIR__."/configs/constants.php"; require_once __DIR__."/configs/conf.php"; require_once 'DB.php'; @@ -33,8 +34,8 @@ if (PEAR::isError($CC_DBC)) { exit(1); } $CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC); +Logging::setLogPath('/var/log/airtime/zendphp.log'); -//Zend_Session::start(); Zend_Validate::setDefaultNamespaces("Zend"); $front = Zend_Controller_Front::getInstance(); diff --git a/airtime_mvc/application/logging/Logging.php b/airtime_mvc/application/logging/Logging.php new file mode 100644 index 000000000..096dbd717 --- /dev/null +++ b/airtime_mvc/application/logging/Logging.php @@ -0,0 +1,19 @@ +query($sql); + } /** * Delete the file from all playlists. diff --git a/airtime_mvc/application/models/Schedule.php b/airtime_mvc/application/models/Schedule.php index 4d68df7b3..bce835269 100644 --- a/airtime_mvc/application/models/Schedule.php +++ b/airtime_mvc/application/models/Schedule.php @@ -60,10 +60,9 @@ class ScheduleGroup { if (empty($length)) { return new PEAR_Error("Length is empty."); } - // Insert into the table $this->groupId = $CC_DBC->GetOne("SELECT nextval('schedule_group_id_seq')"); - + $sql = "INSERT INTO ".$CC_CONFIG["scheduleTable"] ." (instance_id, starts, ends, clip_length, group_id, file_id, cue_out)" ." VALUES ($p_showInstance, TIMESTAMP '$p_datetime', " @@ -76,7 +75,7 @@ class ScheduleGroup { return $result; } - } + } elseif (!is_null($p_playlistId)){ // Schedule a whole playlist @@ -606,7 +605,7 @@ class Schedule { } else { $range_end = Schedule::PypoTimeToAirtimeTime($p_toDateTime); } - + // Scheduler wants everything in a playlist $data = Schedule::GetItems($range_start, $range_end, true); $playlists = array(); @@ -681,5 +680,11 @@ class Schedule { return $result; } + + public static function deleteAll() + { + global $CC_CONFIG, $CC_DBC; + $CC_DBC->query("TRUNCATE TABLE ".$CC_CONFIG["scheduleTable"]); + } } diff --git a/airtime_mvc/application/models/Shows.php b/airtime_mvc/application/models/Shows.php index 085ddcec3..d7f985e7b 100644 --- a/airtime_mvc/application/models/Shows.php +++ b/airtime_mvc/application/models/Shows.php @@ -128,26 +128,26 @@ class Show { * then all show instances that occur on Sunday are removed. * * @param array p_uncheckedDays - * An array specifying which days + * An array specifying which days */ public function removeUncheckedDaysInstances($p_uncheckedDays) { global $CC_DBC; - + $uncheckedDaysImploded = implode(",", $p_uncheckedDays); $showId = $this->getId(); $date = new DateHelper; $timestamp = $date->getTimestamp(); - + $sql = "DELETE FROM cc_show_instances" ." WHERE EXTRACT(DOW FROM starts) IN ($uncheckedDaysImploded)" ." AND starts > TIMESTAMP '$timestamp'" ." AND show_id = $showId"; - $CC_DBC->query($sql); + $CC_DBC->query($sql); } - + /** * Check whether the current show originated * from a recording. @@ -178,7 +178,7 @@ class Show { ->filterByDbRebroadcast(1) ->findOne(); - return !is_null($showInstancesRow); + return !is_null($showInstancesRow); } /** @@ -187,12 +187,12 @@ class Show { * YYYY-MM-DD and time would HH:MM * * @return array - * array of associate arrays containing "start_date" and "start_time" + * array of associate arrays containing "start_date" and "start_time" */ public function getRebroadcastsAbsolute() { global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT date(starts) " ."FROM cc_show_instances " @@ -207,7 +207,7 @@ class Show { $sql = "SELECT date(DATE '$baseDate' + day_offset::INTERVAL) as start_date, start_time FROM cc_show_rebroadcast " ."WHERE show_id = $showId " ."ORDER BY start_date"; - + return $CC_DBC->GetAll($sql); } @@ -217,20 +217,20 @@ class Show { * "x days" and time would HH:MM:SS * * @return array - * array of associate arrays containing "day_offset" and "start_time" + * array of associate arrays containing "day_offset" and "start_time" */ public function getRebroadcastsRelative() { global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT day_offset, start_time FROM cc_show_rebroadcast " ."WHERE show_id = $showId " ."ORDER BY day_offset"; - + return $CC_DBC->GetAll($sql); } - + /** * Check whether the current show is set to repeat * repeating shows. @@ -249,11 +249,11 @@ class Show { } else return false; } - + /** * Get the repeat type of the show. Show can have repeat * type of "weekly", "bi-weekly" and "monthly". These values - * are represented by 0, 1, and 2 respectively. + * are represented by 0, 1, and 2 respectively. * * @return int * Return the integer corresponding to the repeat type. @@ -279,14 +279,14 @@ class Show { */ public function getRepeatingEndDate(){ global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT last_show FROM cc_show_days" ." WHERE show_id = $showId" ." ORDER BY last_show DESC"; - + $endDate = $CC_DBC->GetOne($sql); - + if (is_null($endDate)){ return ""; } else { @@ -309,8 +309,8 @@ class Show { $sql = "DELETE FROM cc_show_instances" ." WHERE starts > TIMESTAMP '$timestamp'" ." AND show_id = $showId"; - - $CC_DBC->query($sql); + + $CC_DBC->query($sql); } /** @@ -331,8 +331,8 @@ class Show { ." WHERE date(starts) > DATE '$p_date'" ." AND starts > TIMESTAMP '$timestamp'" ." AND show_id = $showId"; - - $CC_DBC->query($sql); + + $CC_DBC->query($sql); } /** @@ -353,8 +353,8 @@ class Show { ." WHERE date(starts) < DATE '$p_date'" ." AND starts > TIMESTAMP '$timestamp'" ." AND show_id = $showId"; - - $CC_DBC->query($sql); + + $CC_DBC->query($sql); } /** @@ -362,17 +362,17 @@ class Show { * * @return string * The start date in the format YYYY-MM-DD - */ + */ public function getStartDate(){ global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT first_show FROM cc_show_days" ." WHERE show_id = $showId" ." ORDER BY first_show"; - + $firstDate = $CC_DBC->GetOne($sql); - + if (is_null($firstDate)){ return ""; } else { @@ -385,16 +385,16 @@ class Show { * * @return string * The start time in the format HH:MM:SS - */ + */ public function getStartTime(){ global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT start_time FROM cc_show_days" ." WHERE show_id = $showId"; - + $startTime = $CC_DBC->GetOne($sql); - + if (is_null($startTime)){ return ""; } else { @@ -407,18 +407,18 @@ class Show { * * @return array * A simple array containing all future instance ID's - */ + */ public function getAllFutureInstanceIds(){ global $CC_DBC; $date = new DateHelper; $timestamp = $date->getTimestamp(); - + $showId = $this->getId(); $sql = "SELECT id from cc_show_instances" ." WHERE show_id = $showId" ." AND starts > TIMESTAMP '$timestamp'"; - + $rows = $CC_DBC->GetAll($sql); $instance_ids = array(); @@ -427,36 +427,36 @@ class Show { } return $instance_ids; } - + private function updateDurationTime($p_data){ //need to update cc_show_instances, cc_show_days - + global $CC_DBC; $date = new DateHelper; $timestamp = $date->getTimestamp(); - + $sql = "UPDATE cc_show_days " ."SET duration = '$p_data[add_show_duration]' " ."WHERE show_id = $p_data[add_show_id]"; $CC_DBC->query($sql); - + $sql = "UPDATE cc_show_instances " ."SET ends = starts + INTERVAL '$p_data[add_show_duration]' " ."WHERE show_id = $p_data[add_show_id] " - ."AND starts > TIMESTAMP '$timestamp'"; + ."AND starts > TIMESTAMP '$timestamp'"; $CC_DBC->query($sql); } - + private function updateStartDateTime($p_data, $p_endDate){ //need to update cc_schedule, cc_show_instances, cc_show_days - + global $CC_DBC; $date = new DateHelper; $timestamp = $date->getTimestamp(); - + $sql = "UPDATE cc_show_days " ."SET start_time = TIME '$p_data[add_show_start_time]', " ."first_show = DATE '$p_data[add_show_start_date]', "; @@ -467,7 +467,7 @@ class Show { } $sql .= "WHERE show_id = $p_data[add_show_id]"; $CC_DBC->query($sql); - + $oldStartDateTimeEpoch = strtotime($this->getStartDate()." ".$this->getStartTime()); $newStartDateTimeEpoch = strtotime($p_data['add_show_start_date']." ".$p_data['add_show_start_time']); $diff = $newStartDateTimeEpoch - $oldStartDateTimeEpoch; @@ -476,61 +476,61 @@ class Show { ."SET starts = starts + INTERVAL '$diff sec', " ."ends = ends + INTERVAL '$diff sec' " ."WHERE show_id = $p_data[add_show_id] " - ."AND starts > TIMESTAMP '$timestamp'"; + ."AND starts > TIMESTAMP '$timestamp'"; $CC_DBC->query($sql); - + $showInstanceIds = $this->getAllFutureInstanceIds(); if (count($showInstanceIds) > 0 && $diff != 0){ $showIdsImploded = implode(",", $showInstanceIds); $sql = "UPDATE cc_schedule " ."SET starts = starts + INTERVAL '$diff sec', " ."ends = ends + INTERVAL '$diff sec' " - ."WHERE instance_id IN ($showIdsImploded)"; + ."WHERE instance_id IN ($showIdsImploded)"; $CC_DBC->query($sql); } } - + public function getDuration(){ $showDay = CcShowDaysQuery::create()->filterByDbShowId($this->getId())->findOne(); - return $showDay->getDbDuration(); + return $showDay->getDbDuration(); } - + public function getShowDays(){ $showDays = CcShowDaysQuery::create()->filterByDbShowId($this->getId())->find(); - + $days = array(); foreach ($showDays as $showDay){ array_push($days, $showDay->getDbDay()); } - + return $days; } - + public function hasInstance(){ return (!is_null($this->getInstance())); } - + public function getInstance(){ $showInstances = CcShowInstancesQuery::create()->filterByDbShowId($this->getId())->findOne(); return $showInstances; } - + public function hasInstanceOnDate($p_timestamp){ return (!is_null($this->getInstanceOnDate($p_timestamp))); } - + public function getInstanceOnDate($p_timestamp){ global $CC_DBC; - + $showId = $this->getId(); $sql = "SELECT id FROM cc_show_instances" ." WHERE date(starts) = date(TIMESTAMP '$p_timestamp') " ." AND show_id = $showId"; - + $row = $CC_DBC->GetOne($sql); return CcShowInstancesQuery::create()->findPk($row); } - + public static function deletePossiblyInvalidInstances($p_data, $p_show, $p_endDate, $isRecorded, $repeatType) { if ($p_data['add_show_repeats'] != $p_show->isRepeating() @@ -543,17 +543,17 @@ class Show { //duration has changed $p_show->updateDurationTime($p_data); } - + if ($p_data['add_show_repeats']){ if ($p_data['add_show_start_date'] != $p_show->getStartDate() || $p_data['add_show_start_time'] != $p_show->getStartTime()){ //start date/time has changed - + $newDate = strtotime($p_data['add_show_start_date']); $oldDate = strtotime($p_show->getStartDate()); if ($newDate > $oldDate){ $p_show->removeAllInstancesBeforeDate($p_data['add_show_start_date']); - } + } $p_show->updateStartDateTime($p_data, $p_endDate); } @@ -574,16 +574,16 @@ class Show { } else { $repeatingDaysChanged = true; } - + if ($repeatingDaysChanged){ $daysRemoved = array_diff($showDaysArray, $p_data['add_show_day_check']); - + if (count($daysRemoved) > 0){ $p_show->removeUncheckedDaysInstances($daysRemoved); } } } - + //Check if end date for the repeat option has changed. If so, need to take care //of deleting possible invalid Show Instances. if ((strlen($p_show->getRepeatingEndDate()) == 0) == $p_data['add_show_no_end']){ @@ -595,7 +595,7 @@ class Show { } if ($p_show->getRepeatingEndDate() != $p_data['add_show_end_date']){ //end date was changed. - + $newDate = strtotime($p_data['add_show_end_date']); $oldDate = strtotime($p_show->getRepeatingEndDate()); if ($newDate < $oldDate){ @@ -664,17 +664,17 @@ class Show { $show = new Show($showId); $isRecorded = ($data['add_show_record']) ? 1 : 0; - + if ($data['add_show_id'] != -1){ Show::deletePossiblyInvalidInstances($data, $show, $endDate, $isRecorded, $repeatType); } - + //check if we are adding or updating a show, and if updating //erase all the show's show_days information first. if ($data['add_show_id'] != -1){ CcShowDaysQuery::create()->filterByDbShowId($data['add_show_id'])->delete(); } - + //don't set day for monthly repeat type, it's invalid. if ($data['add_show_repeats'] && $data['add_show_repeat_type'] == 2){ $showDay = new CcShowDays(); @@ -855,7 +855,7 @@ class Show { $sql = "SELECT timestamp '{$start}' + interval '{$duration}'"; $end = $CC_DBC->GetOne($sql); - + $show = new Show($show_id); if ($show->hasInstance()){ $ccShowInstance = $show->getInstance(); @@ -864,7 +864,7 @@ class Show { $ccShowInstance = new CcShowInstances(); $newInstance = true; } - + $ccShowInstance->setDbShowId($show_id); $ccShowInstance->setDbStarts($start); $ccShowInstance->setDbEnds($end); @@ -877,7 +877,7 @@ class Show { if (!$newInstance){ $showInstance->correctScheduleStartTimes(); } - + $sql = "SELECT * FROM cc_show_rebroadcast WHERE show_id={$show_id}"; $rebroadcasts = $CC_DBC->GetAll($sql); @@ -927,7 +927,7 @@ class Show { $sql = "SELECT timestamp '{$start}' + interval '{$duration}'"; $end = $CC_DBC->GetOne($sql); - + if ($show->hasInstanceOnDate($start)){ $ccShowInstance = $show->getInstanceOnDate($start); $newInstance = false; @@ -1100,7 +1100,7 @@ class Show { return $events; } - private static function makeFullCalendarEvent($show, $options=array()) + private static function makeFullCalendarEvent($show, $options=array()) { $event = array(); @@ -1125,7 +1125,7 @@ class Show { } if($show["background_color"] != "") { $event["color"] = "#".$show["background_color"]; - } + } foreach($options as $key=>$value) { $event[$key] = $value; @@ -1138,12 +1138,12 @@ class Show { $explode = explode(" ", $p_timestamp); return $explode[0]; } - + public static function getTimeFromTimestamp($p_timestamp){ $explode = explode(" ", $p_timestamp); return $explode[1]; } - + /** * This function formats a time by removing seconds * @@ -1240,7 +1240,7 @@ class ShowInstance { return $showStartExplode[1]; } - + public function setSoundCloudFileId($p_soundcloud_id) { $showInstance = CcShowInstancesQuery::create()->findPK($this->_instanceId); @@ -1270,7 +1270,7 @@ class ShowInstance { return $file; } } - + return null; } @@ -1299,7 +1299,7 @@ class ShowInstance { public function correctScheduleStartTimes(){ global $CC_DBC; - + $instance_id = $this->getShowInstanceId(); $sql = "SELECT starts from cc_schedule" ." WHERE instance_id = $instance_id" @@ -1307,7 +1307,7 @@ class ShowInstance { ." LIMIT 1"; $scheduleStarts = $CC_DBC->GetOne($sql); - + if (!is_null($scheduleStarts)){ $scheduleStartsEpoch = strtotime($scheduleStarts); $showStartsEpoch = strtotime($this->getShowStart()); @@ -1318,7 +1318,7 @@ class ShowInstance { $sql = "UPDATE cc_schedule" ." SET starts = starts + INTERVAL '$diff' second," ." ends = ends + INTERVAL '$diff' second" - ." WHERE instance_id = $instance_id"; + ." WHERE instance_id = $instance_id"; $CC_DBC->query($sql); } @@ -1553,7 +1553,7 @@ class ShowInstance { $start_timestamp = $this->getShowStart(); $end_timestamp = $this->getShowEnd(); $time_filled = $this->getTimeScheduled(); - + $s_epoch = strtotime($start_timestamp); $e_epoch = strtotime($end_timestamp); $i_epoch = Schedule::WallTimeToMillisecs($time_filled) / 1000; diff --git a/airtime_mvc/application/models/StoredFile.php b/airtime_mvc/application/models/StoredFile.php index 06a69ce08..82e68aafd 100644 --- a/airtime_mvc/application/models/StoredFile.php +++ b/airtime_mvc/application/models/StoredFile.php @@ -1,6 +1,6 @@ GetAll($sql); + return $rows; + } + /** * Generate the location to store the file. * It creates the subdirectory if needed. @@ -1163,10 +1170,7 @@ class StoredFile { return TRUE; } else { - return PEAR::raiseError( - "StoredFile::deleteFile: unlink failed ({$this->filepath})", - GBERR_FILEIO - ); + return PEAR::raiseError("StoredFile::deleteFile: unlink failed ({$this->filepath})"); } } else { @@ -1205,6 +1209,34 @@ class StoredFile { } + public static function deleteById($p_id) + { + global $CC_CONFIG, $CC_DBC; + if (!is_numeric($p_id)) { + return FALSE; + } + $sql = "DELETE FROM ".$CC_CONFIG["filesTable"]." WHERE id=$p_id"; + + $res = $CC_DBC->query($sql); + if (PEAR::isError($res)) { + return $res; + } + return TRUE; + } + + public static function deleteAll() + { + global $CC_CONFIG, $CC_DBC; + $files = StoredFile::getAll(); + foreach ($files as $file) { + $media = StoredFile::Recall($file["id"]); + $result = $media->delete(); + if (PEAR::isError($result)) { + return $result; + } + } + } + /** * Returns an array of playlist objects that this file is a part of. * @return array @@ -1555,7 +1587,7 @@ class StoredFile { } - public static function searchPlaylistsForSchedule($datatables) + public static function searchPlaylistsForSchedule($datatables) { $fromTable = "cc_playlist AS pl LEFT JOIN cc_playlisttimes AS plt USING(id) LEFT JOIN cc_subjs AS sub ON pl.editedby = sub.id"; //$datatables["optWhere"][] = "INTERVAL '{$time_remaining}' > INTERVAL '00:00:00'"; diff --git a/airtime_mvc/application/views/scripts/form/preferences_general.phtml b/airtime_mvc/application/views/scripts/form/preferences_general.phtml index 92e7956f4..aa4e5d587 100644 --- a/airtime_mvc/application/views/scripts/form/preferences_general.phtml +++ b/airtime_mvc/application/views/scripts/form/preferences_general.phtml @@ -31,12 +31,12 @@