Fixed a bug with Monthly Quota plugin.
[timetracker.git] / WEB-INF / templates / time.tpl
index da04410..e5a753f 100644 (file)
@@ -41,7 +41,7 @@ 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))
@@ -357,8 +357,8 @@ function get_time() {
   {if $month_total}
   <tr>
     <td align="left">{$i18n.label.month_total}: {$month_total}</td>
-    {if $month_left|strpos:'-' === 0}
-    <td align="right">{$i18n.label.month_over}: <span style="color: green;">{$month_left|substr:1}</span></td>
+    {if $over_quota}
+    <td align="right">{$i18n.label.month_over}: <span style="color: green;">{$month_left}</span></td>
     {else}
     <td align="right">{$i18n.label.month_left}: <span style="color: red;">{$month_left}</span></td>
     {/if}