summaryrefslogtreecommitdiff
path: root/includes/pages/user_settings.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2016-11-11 16:42:47 +0100
committermsquare <msquare@notrademark.de>2016-11-11 16:42:47 +0100
commitbeb0db6852a246350d06dcfe508e3d2b9925731f (patch)
tree394ffdb6a9f96b0afa637cf9fc00eef00c8dfa79 /includes/pages/user_settings.php
parentade473f3e16e2051014164a34426da9027fb534f (diff)
fix misspellings
Diffstat (limited to 'includes/pages/user_settings.php')
-rw-r--r--includes/pages/user_settings.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/includes/pages/user_settings.php b/includes/pages/user_settings.php
index 600550d4..32bea8da 100644
--- a/includes/pages/user_settings.php
+++ b/includes/pages/user_settings.php
@@ -10,7 +10,7 @@ function settings_title() {
* @param User $user_source
* The user
*/
-function user_settings_main($user_source, $tshirt_sizes) {
+function user_settings_main($user_source, $enable_tshirt_size, $tshirt_sizes) {
$valid = true;
if (isset($_REQUEST['mail']) && strlen(strip_request_item('mail')) > 0) {
@@ -96,8 +96,6 @@ function user_settings_main($user_source, $tshirt_sizes) {
* The user
*/
function user_settings_password($user_source) {
- $valid = true;
-
if (! isset($_REQUEST['password']) || ! verify_password($_REQUEST['password'], $user_source['Passwort'], $user_source['UID'])) {
error(_("-> not OK. Please try again."));
} elseif (strlen($_REQUEST['new_password']) < MIN_PASSWORD_LENGTH) {
@@ -120,7 +118,7 @@ function user_settings_password($user_source) {
* @param array<String> $themes
* List of available themes
*/
-function user_settings_theme($user_sources, $themes) {
+function user_settings_theme($user_source, $themes) {
$valid = true;
if (isset($_REQUEST['theme']) && isset($themes[$_REQUEST['theme']])) {
@@ -185,11 +183,11 @@ function user_settings() {
$user_source = $user;
if (isset($_REQUEST['submit'])) {
- user_settings_main($user_source, $tshirt_sizes);
+ user_settings_main($user_source, $enable_tshirt_size, $tshirt_sizes);
} elseif (isset($_REQUEST['submit_password'])) {
user_settings_password($user_source);
} elseif (isset($_REQUEST['submit_theme'])) {
- user_settings_theme($user_sources, $themes);
+ user_settings_theme($user_source, $themes);
} elseif (isset($_REQUEST['submit_language'])) {
user_settings_locale($user_source, $locales);
}