From f28ab122810543259b4ac0dcda798b99cb005223 Mon Sep 17 00:00:00 2001 From: denise Date: Fri, 31 May 2013 09:40:23 -0400 Subject: [PATCH] Fixed typo. --- airtime_mvc/application/services/ShowService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airtime_mvc/application/services/ShowService.php b/airtime_mvc/application/services/ShowService.php index b9bc51f6c..5a4fc130f 100644 --- a/airtime_mvc/application/services/ShowService.php +++ b/airtime_mvc/application/services/ShowService.php @@ -379,11 +379,11 @@ SQL; } if (count($daysRemoved) > 0) { - //delete repeating show instances for the repeating - //days that were removed if ($this->ccShow->isLinked()) { $this->preserveLinkedShowContent(); } + //delete repeating show instances for the repeating + //days that were removed $this->deleteRemovedShowDayInstances($daysRemoved, $ccShowDays, $showId); } @@ -430,7 +430,7 @@ SQL; private function preserveLinkedShowContent() { - /* Get show content from any linekd instance. It doesn't + /* Get show content from any linked instance. It doesn't * matter which instance since content is the same in all. */ $ccShowInstance = $this->ccShow->getCcShowInstancess()->getFirst();