From ca382aedda81b2ae264a2e017e173bc6a7f8346b Mon Sep 17 00:00:00 2001 From: Lucas Bickel Date: Tue, 21 Mar 2017 19:06:01 +0100 Subject: [PATCH] Rename initial show back to "Untitled Show" This is mainly so we don't have to retranslate this and that it matches with playlists and smart blocks again. --- airtime_mvc/application/forms/AddShowWhat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/forms/AddShowWhat.php b/airtime_mvc/application/forms/AddShowWhat.php index fd9423c11..22111bec0 100644 --- a/airtime_mvc/application/forms/AddShowWhat.php +++ b/airtime_mvc/application/forms/AddShowWhat.php @@ -27,7 +27,7 @@ class Application_Form_AddShowWhat extends Zend_Form_SubForm 'class' => 'input_text', 'required' => true, 'filters' => array('StringTrim'), - 'value' => _('New Show'), + 'value' => _('Untitled Show'), 'validators' => array($notEmptyValidator, array('StringLength', false, array(0, $maxLens['name']))) ));