Copyright notes at top op every source file
[fa-stable.git] / sales / manage / credit_status.php
index f4608d088e3c10d2cef45fc934d287af768868ab..1e05949f1bae6d8ef0f2f05e6b9472ad44d266be 100644 (file)
@@ -1,5 +1,14 @@
 <?php
-
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU Affero General Public License,
+       AGPL, as published by the Free Software Foundation, either version 
+       3 of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/agpl-3.0.html>.
+***********************************************************************/
 $page_security = 3;
 $path_to_root="../..";
 include($path_to_root . "/includes/session.inc");
@@ -19,6 +28,7 @@ function can_process()
        if (strlen($_POST['reason_description']) == 0) 
        {
                display_error(_("The credit status description cannot be empty."));
+               set_focus('reason_description');
                return false;
        }       
        
@@ -71,8 +81,8 @@ if ($Mode == 'Delete')
        {
                delete_credit_status($selected_id);
                display_notification(_('Selected credit status has been deleted'));
-               $Mode = 'RESET';
        }
+       $Mode = 'RESET';
 }
 
 if ($Mode == 'RESET')
@@ -107,7 +117,7 @@ while ($myrow = db_fetch($result))
        label_cell($myrow["reason_description"]);
        label_cell($disallow_text);
        edit_button_cell("Edit".$myrow['id'], _("Edit"));
-       edit_button_cell("Delete".$myrow['id'], _("Delete"));
+       delete_button_cell("Delete".$myrow['id'], _("Delete"));
        end_row();
 }
 
@@ -119,7 +129,7 @@ echo '<br>';
 
 start_form();
 
-start_table("$table_style2 width=40%");
+start_table($table_style2);
 
 if ($selected_id != -1) 
 {