Fixed typo
[fa-stable.git] / admin / company_preferences.php
index 8f50a89281154008c5caa10431b07dddda6e27ad..ff9dd5a9f1918eeb24cbd56de09097c02fe509c0 100644 (file)
@@ -24,9 +24,9 @@ if (isset($_POST['submit']) && $_POST['submit'] != "")
                display_error(_("The company name must be entered."));
                set_focus('coy_name');
        }
-       $user_comp = user_company();
        if (isset($_FILES['pic']) && $_FILES['pic']['name'] != '')
        {
+               $user_comp = user_company();
                $result = $_FILES['pic']['error'];
                $filename = $comp_path . "/$user_comp/images";
                if (!file_exists($filename))
@@ -82,7 +82,7 @@ if (isset($_POST['submit']) && $_POST['submit'] != "")
 
                display_notification_centered(_("Company setup has been updated."));
        }
-
+       $Ajax->activate('_page_body');
 } /* end of if submit */
 
 //---------------------------------------------------------------------------------------------
@@ -135,7 +135,7 @@ text_row_ex(_("Telephone Number:"), 'phone', 25, 55);
 text_row_ex(_("Facsimile Number:"), 'fax', 25);
 text_row_ex(_("Email Address:"), 'email', 25, 55);
 label_row(_("Company Logo:"), $_POST['coy_logo']);
-label_row(_("New")." "._("Company Logo (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
+label_row(_("New Company Logo (.jpg)") . ":", "<input type='file' id='pic' name='pic'>");
 
 text_row_ex(_("Domicile:"), 'domicile', 25, 55);
 
@@ -168,7 +168,7 @@ end_row();
 
 end_table(1);
 hidden('coy_logo', $_POST['coy_logo']);
-submit_center('submit', _("Update"));
+submit_center('submit', _("Update"), true, '', true);
 
 end_form(2);
 //-------------------------------------------------------------------------------------------------