Fixed a bug in Application_Model_SetShowsPopulatedUntil

This commit is contained in:
Albert Santoni 2014-01-22 17:58:25 -05:00
parent 3826a88d1f
commit 52c3971fc6
1 changed files with 1 additions and 0 deletions

View File

@ -221,6 +221,7 @@ class Application_Model_Preference
*/
public static function SetShowsPopulatedUntil($dateTime)
{
$dateTime->setTimezone(new DateTimeZone("UTC"));
self::setValue("shows_populated_until", $dateTime->format("Y-m-d H:i:s"));
}