Update form fields
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 6 May 2014 19:54:22 +0000 (19:54 +0000)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 6 May 2014 19:54:22 +0000 (19:54 +0000)
for temp storage fields

Toolkit/Contacts/ContactUs.php
Toolkit/Contacts/TempStorageQuickLaunch.php

index 20f3141..7181291 100755 (executable)
@@ -842,9 +842,9 @@ class Toolkit_Contacts_ContactUs
             $page->formData['mail_ok']['element']
                 = ($page->formData['mail_ok']['element']) ? 'Yes' : 'No';
         }
-        if ($this->elementExists('service_required')) {
-            $page->formData['service_required']['element']
-                = ($page->formData['service_required']['element']) ? 'Yes' : 'No';
+        if ($this->elementExists('temp_storage')) {
+            $page->formData['temp_storage']['element']
+                = ($page->formData['temp_storage']['element']) ? 'Yes' : 'No';
         }
 
         if ($this->elementExists('quick_launch')) {
index 5b8ba11..dc22084 100755 (executable)
@@ -262,8 +262,8 @@ class Toolkit_Contacts_TempStorageQuickLaunch
         $e[] = array(
             'type'    => 'checkbox',
             'req'     => false,
-            'name'    => 'service_required',
-            'display' => 'Service Required',
+            'name'    => 'temp_storage',
+            'display' => '<b>Do You Need Temporary Storage</b>',
             'opts'    => 'Yes'
         );
         $e[] = array(
@@ -299,7 +299,7 @@ class Toolkit_Contacts_TempStorageQuickLaunch
             'type'    => 'checkbox',
             'req'     => false,
             'name'    => 'quick_launch',
-            'display' => 'Quick Launch',
+            'display' => '<b>Do You Need Quick Launch</b>',
             'opts'    => 'Yes'
         );
         $e[] = array(