From 480ebab07341507e76924eef9f5054b6abcafcab Mon Sep 17 00:00:00 2001 From: Marius Cramer Date: Tue, 5 May 2015 16:25:17 +0200 Subject: [PATCH] Fixed smaller typo --- install/install.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/install/install.php b/install/install.php index 684e1c9d1..447d79345 100644 --- a/install/install.php +++ b/install/install.php @@ -458,9 +458,9 @@ if($install_mode == 'standard') { $check = false; do { unset($temp_password); - $temp_password = $inst->free_query('Re-enter Admin password', ''); + $temp_password = $inst->free_query('Re-enter admin password', ''); $check = @($temp_password == $conf['interface_password'])?true:false; - if(!$check) swriteln('Passwords do noz match.'); + if(!$check) swriteln('Passwords do not match.'); } while (!$check); } unset($check); @@ -809,9 +809,9 @@ if($install_mode == 'standard') { $check = false; do { unset($temp_password); - $temp_password = $inst->free_query('Re-enter Admin password', ''); + $temp_password = $inst->free_query('Re-enter admin password', ''); $check = @($temp_password == $conf['interface_password'])?true:false; - if(!$check) swriteln('Passwords do noz match.'); + if(!$check) swriteln('Passwords do not match.'); } while (!$check); } unset($check); @@ -861,4 +861,4 @@ chmod($md5_filename,0700); echo "Installation completed.\n"; -?> +?> \ No newline at end of file -- GitLab