A bit more consistent usage of quotes in template files.
[timetracker.git] / WEB-INF / templates / mobile / timer.tpl
index bd6bf8b..3daf064 100644 (file)
@@ -41,13 +41,13 @@ task_names = new Array();
 empty_label_project = '{$i18n.dropdown.select|escape:'javascript'}';
 empty_label_task = '{$i18n.dropdown.select|escape:'javascript'}';
 
-// The populateDropdowns function populates the "project" and "task" dropdown controls
+// The fillDropdowns function populates the "project" and "task" dropdown controls
 // with relevant values.
 function fillDropdowns() {
-  if(document.body.contains(document.timeRecordForm.client))
-    fillProjectDropdown(document.timeRecordForm.client.value);
+  if(document.body.contains(document.timerRecordForm.client))
+    fillProjectDropdown(document.timerRecordForm.client.value);
 
-  fillTaskDropdown(document.timeRecordForm.project.value);
+  fillTaskDropdown(document.timerRecordForm.project.value);
 }
 
 // The fillProjectDropdown function populates the project combo box with
@@ -213,19 +213,19 @@ startTimer();
 <table cellspacing="4" cellpadding="7" border="0">
 <tr>
   <td>
-  <table width = "100%">
+  <table width="100%">
   <tr>
     <td valign="top">
     <table border="0">
-{if in_array('cl', explode(',', $user->plugins))}
+{if $user->isPluginEnabled('cl')}
     <tr><td>{$i18n.label.client}:</td></tr>
     <tr><td>{$forms.timerRecordForm.client.control}</td></tr>
 {/if}
-{if in_array('iv', explode(',', $user->plugins))}
+{if $user->isPluginEnabled('iv')}
     <tr><td><label>{$forms.timerRecordForm.billable.control}{$i18n.form.time.billable}</label></td></tr>
 {/if}
 {if ($custom_fields && $custom_fields->fields[0])}
-      <tr><td>{$custom_fields->fields[0]['label']|escape:'html'}:</td></tr>
+      <tr><td>{$custom_fields->fields[0]['label']|escape}:</td></tr>
       <tr><td>{$forms.timerRecordForm.cf_1.control}</td></tr>
 {/if}
 {if ($smarty.const.MODE_PROJECTS == $user->tracking_mode || $smarty.const.MODE_PROJECTS_AND_TASKS == $user->tracking_mode)}
@@ -252,13 +252,13 @@ startTimer();
 <tr>
   <td align="center">
     {if $time_records}
-    <table border='0'>
+    <table border="0">
       <tr>
-        <td align='right'>{$i18n.label.day_total}:</td>
+        <td align="right">{$i18n.label.day_total}:</td>
         <td>{$day_total}</td>
       </tr>
       <tr>
-        <td align='right'>{$i18n.label.week_total}:</td>
+        <td align="right">{$i18n.label.week_total}:</td>
         <td>{$week_total}</td>
       </tr>
     </table>