Cosmetic formatting improvements
authorNik Okuntseff <support@anuko.com>
Wed, 16 Mar 2016 04:49:03 +0000 (04:49 +0000)
committerNik Okuntseff <support@anuko.com>
Wed, 16 Mar 2016 04:49:03 +0000 (04:49 +0000)
WEB-INF/templates/footer.tpl
cf_custom_fields.php
cf_dropdown_option_add.php
cf_dropdown_option_delete.php
cf_dropdown_option_edit.php
charts.php
client_add.php
client_delete.php
client_edit.php
cron.php

index ee0b060..9f12e22 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.16.3418 | 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.16.3419 | 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 35ae94d..a44f30c 100644 (file)
@@ -40,9 +40,9 @@ $form = new Form('customFieldsForm');
 
 if ($request->getMethod() == 'POST') {
   if ($request->getParameter('btn_add')) {
-       // The Add button clicked. Redirect to cf_custom_field_add.php page.
-       header('Location: cf_custom_field_add.php');
-       exit();
+    // The Add button clicked. Redirect to cf_custom_field_add.php page.
+    header('Location: cf_custom_field_add.php');
+    exit();
   }
 } else {
   $form->addInput(array('type'=>'submit','name'=>'btn_add','value'=>$i18n->getKey('button.add')));
index 1eca213..5dd2c57 100644 (file)
@@ -55,13 +55,12 @@ if ($request->getMethod() == 'POST') {
   if (!ttValidString($cl_option_name)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.thing_name'));
          
   if ($errors->isEmpty()) {
-       $res = CustomFields::insertOption($cl_field_id, $cl_option_name);
+    $res = CustomFields::insertOption($cl_field_id, $cl_option_name);
     if ($res) {
       header("Location: cf_dropdown_options.php?field_id=$cl_field_id");
       exit();
-    } else {
+    } else
       $errors->add($i18n->getKey('error.db'));
-    }
   }
 }
 
index 8adb43a..404896f 100644 (file)
@@ -44,19 +44,18 @@ if ($request->getMethod() == 'POST') {
   // Determine field id for redirect.
   $field_id = CustomFields::getFieldIdForOption($cl_id);
   if ($request->getParameter('btn_delete'))  {
-       // Delete button pressed.
-       $res = CustomFields::deleteOption($cl_id);
+    // Delete button pressed.
+    $res = CustomFields::deleteOption($cl_id);
     if ($res) {
       header("Location: cf_dropdown_options.php?field_id=$field_id");
       exit();
-    } else {
+    } else
       $errors->add($i18n->getKey('error.db'));
-    }
   }
   if ($request->getParameter('btn_cancel')) {
-       // Cancel button pressed.
-       header("Location: cf_dropdown_options.php?field_id=$field_id");
-       exit();
+    // Cancel button pressed.
+    header("Location: cf_dropdown_options.php?field_id=$field_id");
+    exit();
   }
 } else {
   $option = CustomFields::getOptionName($cl_id);       
index ddea967..eff95b1 100644 (file)
@@ -61,9 +61,8 @@ if ($request->getMethod() == 'POST') {
       $field_id = CustomFields::getFieldIdForOption($cl_id);
       header("Location: cf_dropdown_options.php?field_id=$field_id");
       exit();
-    } else {
+    } else
       $errors->add($i18n->getKey('error.db'));
-    }
   }
 }
 
index 5bf9034..31ac49f 100644 (file)
@@ -88,10 +88,10 @@ if ($request->getMethod( )== 'POST') {
   // If chart interval changed - save it.
   $cl_interval = $request->getParameter('interval');
   if ($cl_interval) {
-       // Save in the session
+    // Save in the session
     $_SESSION['chart_interval'] = $cl_interval;
     // and permanently.
-       $sc = new ttSysConfig($user->id);
+    $sc = new ttSysConfig($user->id);
     $sc->setValue(SYSC_CHART_INTERVAL, $cl_interval);
   }
   // If chart type changed - save it.  
index 9363e59..4ddb500 100644 (file)
@@ -47,7 +47,7 @@ if ($request->getMethod() == 'POST') {
 } else {
   // Do not assign all projects to a new client by default. This should help to reduce clutter.
   // foreach ($projects as $project_item)
-  //    $cl_projects[] = $project_item['id'];
+  //   $cl_projects[] = $project_item['id'];
 }
 
 $form = new Form('clientForm');
index 7cf05eb..aea24d3 100644 (file)
@@ -43,10 +43,8 @@ $client_to_delete = $client['name'];
        
 $form = new Form('clientDeleteForm');
 $form->addInput(array('type'=>'hidden','name'=>'id','value'=>$id));
-$form->addInput(array('type'=>'combobox',
-    'name'=>'delete_client_entries',
-    'data'=>array('0'=>$i18n->getKey('dropdown.do_not_delete'),'1'=>$i18n->getKey('dropdown.delete')),
-));
+$form->addInput(array('type'=>'combobox','name'=>'delete_client_entries',
+  'data'=>array('0'=>$i18n->getKey('dropdown.do_not_delete'),'1'=>$i18n->getKey('dropdown.delete'))));
 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->getKey('label.delete')));
 $form->addInput(array('type'=>'submit','name'=>'btn_cancel','value'=>$i18n->getKey('button.cancel')));
 
@@ -63,8 +61,8 @@ if ($request->getMethod() == 'POST') {
       $errors->add($i18n->getKey('error.db'));
 
   if ($request->getParameter('btn_cancel')) {
-       header('Location: clients.php');
-       exit();
+    header('Location: clients.php');
+    exit();
   }
 } // post
 
index c13d42e..758b2ef 100644 (file)
@@ -77,7 +77,7 @@ if ($request->getMethod() == 'POST') {
   if (!ttValidFloat($cl_tax, true)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.tax'));
                
   if ($errors->isEmpty()) {
-       if ($request->getParameter('btn_save')) {
+    if ($request->getParameter('btn_save')) {
       $client = ttClientHelper::getClientByName($cl_name);
       if (($client && ($cl_id == $client['id'])) || !$client) {
         if (ttClientHelper::update(array(
@@ -93,7 +93,7 @@ if ($request->getMethod() == 'POST') {
           $errors->add($i18n->getKey('error.db'));     
       } else
         $errors->add($i18n->getKey('error.client_exists'));
-       }
+    }
        
     if ($request->getParameter('btn_copy')) {
       if (!ttClientHelper::getClientByName($cl_name)) {
index 908c890..81ef898 100644 (file)
--- a/cron.php
+++ b/cron.php
@@ -48,10 +48,10 @@ $mdb2 = getConnection();
 $now = mktime();
 
 $sql = "select * from tt_cron where $now >= next 
-        and status = 1 and report_id is not null and email is not null";
+  and status = 1 and report_id is not null and email is not null";
 $res = $mdb2->query($sql);
 if (is_a($res, 'PEAR_Error'))
-  exit;
+  exit();
 
 while ($val = $res->fetchRow()) {
   // We have jobs to execute in user language.