From 0eb5fb51b6f25a11439f8e17b6d4956d1dd8fc66 Mon Sep 17 00:00:00 2001 From: James Date: Mon, 14 Jan 2013 14:49:06 -0500 Subject: [PATCH] CC-4836: Playlist length is wrong because wrong cue out setting. - fixed --- airtime_mvc/public/js/airtime/library/spl.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/public/js/airtime/library/spl.js b/airtime_mvc/public/js/airtime/library/spl.js index f343ff945..e6fb77cf3 100644 --- a/airtime_mvc/public/js/airtime/library/spl.js +++ b/airtime_mvc/public/js/airtime/library/spl.js @@ -74,7 +74,7 @@ var AIRTIME = (function(AIRTIME){ type = $('#obj_type').val(); if (!isTimeValid(cueIn)){ - showError(span, $.i18n("please put in a time '00:00:00 (.0)'")); + showError(span, $.i18n._("please put in a time '00:00:00 (.0)'")); return; } $.post(url, @@ -111,7 +111,7 @@ var AIRTIME = (function(AIRTIME){ type = $('#obj_type').val(); if (!isTimeValid(cueOut)){ - showError(span, $.i18n("please put in a time '00:00:00 (.0)'")); + showError(span, $.i18n._("please put in a time '00:00:00 (.0)'")); return; }