From: Joe Hunt Date: Sat, 7 Jun 2008 10:43:43 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v2.4.2~19^2~2036 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=f04f9423d630b18806748d0bc7bd931f70878cbc;p=fa-stable.git *** empty log message *** --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index b113bbb5..e432679e 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,25 @@ Legend: ! -> Note $ -> Affected files +07-Jun-2008 Joe Hunt +! Changed install.html and update.html +$ install.html + update.html ++ New files, change_current_user_password.php and alter2.sql +$ /admin/change_current_user_password.php + /sql/alter2.sql +! Changed some files for layout +$ /lang/en_US/stylesheet.css + /themes/aqua/default.css + /themes/aqua/renderer.php + /themes/cool/default.css + /themes/cool/renderer.php + /themes/default/default.css + /themes/default/renderer.php +! Changed install sql scripts +$ /sql/en_US-demo.sql + /sql/en_US-new.sql + 07-Jun-2008 Janusz Dobrowolski + Added ajax functionality and ui hints to sales form entry pages. $ /sales/sales_order_entry.php diff --git a/admin/change_current_user_password.php b/admin/change_current_user_password.php new file mode 100644 index 00000000..817c94f6 --- /dev/null +++ b/admin/change_current_user_password.php @@ -0,0 +1,106 @@ +username; + + +if (isset($_GET['UpdatedID'])) +{ + display_notification_centered(_("Your password has been updated.")); +} + +function can_process() +{ + + if (strlen($_POST['password']) < 4) + { + display_error( _("The password entered must be at least 4 characters long.")); + set_focus('password'); + return false; + } + + if (strstr($_POST['password'], $_POST['user_id']) != false) + { + display_error( _("The password cannot contain the user login.")); + set_focus('password'); + return false; + } + + if ($_POST['password'] != $_POST['passwordConfirm']) + { + display_error( _("The passwords entered are not the same.")); + set_focus('password'); + return false; + } + + return true; +} + +if (isset($_POST['UPDATE_ITEM'])) +{ + + if (can_process()) + { + if (isset($selected_id)) + { + if ($_POST['password'] != "") + update_user_password($_POST['user_id'], md5($_POST['password'])); + + unset($selected_id); + meta_forward($_SERVER['PHP_SELF'], "UpdatedID=1"); + } + } +} + +start_form(); + +start_table($table_style); + +if (isset($selected_id)) +{ + //editing an existing User + + $myrow = get_user($selected_id); + + $_POST['user_id'] = $myrow["user_id"]; + hidden('selected_id', $selected_id); + hidden('user_id', $_POST['user_id']); + + label_row(_("User login:"), $_POST['user_id']); + +} +$_POST['password'] = ""; +$_POST['passwordConfirm'] = ""; + +start_row(); +label_cell(_("Password:")); +label_cell(""); +end_row(); + +start_row(); +label_cell(_("Repeat password:")); +label_cell(""); +end_row(); + +if (isset($selected_id)) +{ + table_section_title(_("Enter your new password in the fields.")); +} + +end_table(1); + +submit_add_or_update_center(!isset($selected_id)); + +end_form(); +end_page(); +?> diff --git a/install.html b/install.html index 3e50b71a..bf8a0832 100644 --- a/install.html +++ b/install.html @@ -1,320 +1,191 @@ - - +FrontAccounting - - FrontAccounting - - - -
FrontAccounting Installation
- +
FrontAccounting +Installation

Pre-requisites

- - -

 

- - - + \ No newline at end of file