]> wagnertech.de Git - timetracker.git/commitdiff
Fixed constructor calls for FloatField elements to have only one parameter.
authoranuko <support@anuko.com>
Sun, 5 Feb 2017 19:21:38 +0000 (19:21 +0000)
committeranuko <support@anuko.com>
Sun, 5 Feb 2017 19:21:38 +0000 (19:21 +0000)
WEB-INF/templates/footer.tpl
mobile/user_add.php
mobile/user_edit.php
user_add.php
user_edit.php

index ccb95b9320ad05b8fb903135bd2194f7c53fa6d7..c07d43bba5ff83f6a1769b36a1c6ee63f6c3dd85 100644 (file)
@@ -12,7 +12,7 @@
       <br>
       <table cellspacing="0" cellpadding="4" width="100%" border="0">
         <tr>
-          <td align="center">&nbsp;Anuko Time Tracker 1.9.36.3564 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
+          <td align="center">&nbsp;Anuko Time Tracker 1.9.36.3565 | Copyright &copy; <a href="https://www.anuko.com/lp/tt_3.htm" target="_blank">Anuko</a> |
             <a href="https://www.anuko.com/lp/tt_4.htm" target="_blank">{$i18n.footer.credits}</a> |
             <a href="https://www.anuko.com/lp/tt_5.htm" target="_blank">{$i18n.footer.license}</a> |
             <a href="https://www.anuko.com/lp/tt_7.htm" target="_blank">{$i18n.footer.improve}</a>
index f42dd4ddd588cfdc459676c2532c279c8a4a1e1a..34c48222e4409ad9e4576b152ffc9ff3187a7268 100644 (file)
@@ -105,7 +105,7 @@ class NameCellRenderer extends DefaultCellRenderer {
 class RateCellRenderer extends DefaultCellRenderer {
   function render(&$table, $value, $row, $column, $selected = false) {
     global $assigned_projects;
-    $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'), $table->getValueAtName($row, 'p_rate'));
+    $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'));
     $field->setFormName($table->getFormName());
     $field->setLocalization($GLOBALS['I18N']);
     $field->setSize(5);
index 6077a13a9a11b1c8612f6d4f0a3462fe57245cc2..4f3b9aaa08b24a00bc66e902842cf0d70987cc1c 100644 (file)
@@ -135,7 +135,7 @@ class NameCellRenderer extends DefaultCellRenderer {
 class RateCellRenderer extends DefaultCellRenderer {
   function render(&$table, $value, $row, $column, $selected = false) {
     global $assigned_projects;
-    $field = new FloatField('rate_'.$table->getValueAtName($row,'id'), $table->getValueAtName($row, 'p_rate'));
+    $field = new FloatField('rate_'.$table->getValueAtName($row,'id'));
     $field->setFormName($table->getFormName());
     $field->setLocalization($GLOBALS['I18N']);
     $field->setSize(5);
index 403c6ca6a37b6cfc2eb82d060e05d7a546b035b1..a00528bf3b3ba0ac5def8063829c593162fd1998 100644 (file)
@@ -105,7 +105,7 @@ class NameCellRenderer extends DefaultCellRenderer {
 class RateCellRenderer extends DefaultCellRenderer {
   function render(&$table, $value, $row, $column, $selected = false) {
     global $assigned_projects;
-    $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'), $table->getValueAtName($row, 'p_rate'));
+    $field = new FloatField('rate_'.$table->getValueAtName($row, 'id'));
     $field->setFormName($table->getFormName());
     $field->setLocalization($GLOBALS['I18N']);
     $field->setSize(5);
index 0dc7afb3087a97c768d7b5da2d74061671d30611..ac1143f3aaa3ed779800f5c4b53148b513aeaba3 100644 (file)
@@ -135,7 +135,7 @@ class NameCellRenderer extends DefaultCellRenderer {
 class RateCellRenderer extends DefaultCellRenderer {
   function render(&$table, $value, $row, $column, $selected = false) {
     global $assigned_projects;
-    $field = new FloatField('rate_'.$table->getValueAtName($row,'id'), $table->getValueAtName($row, 'p_rate'));
+    $field = new FloatField('rate_'.$table->getValueAtName($row,'id'));
     $field->setFormName($table->getFormName());
     $field->setLocalization($GLOBALS['I18N']);
     $field->setSize(5);