diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-10-31 02:41:36 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-10-31 02:41:36 +0200 |
commit | 59250ec6fd27601604570a2d66740053beaa71e0 (patch) | |
tree | 76f2f37e8bf9e3d850fdc2df600d33d976201ae8 | |
parent | b116b2fd4c75cb8ddf722ae13be85bbe4eae33f3 (diff) | |
download | nextcloud-server-59250ec6fd27601604570a2d66740053beaa71e0.tar.gz nextcloud-server-59250ec6fd27601604570a2d66740053beaa71e0.zip |
fix some typo's
-rwxr-xr-x | inc/templates/adminform.php | 2 | ||||
-rw-r--r-- | settings/index.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/inc/templates/adminform.php b/inc/templates/adminform.php index 50ba2a3b64b..5a04c4902ac 100755 --- a/inc/templates/adminform.php +++ b/inc/templates/adminform.php @@ -88,7 +88,7 @@ echo('<form method="post" action="'.$action.'">') echo "<tr><td colspan='3' class='error'>$CONFIG_ERROR</td></tr>"; } if($FIRSTRUN){?> -<tr><th colspan="2">Administartor User</th></tr> +<tr><th colspan="2">Administrator User</th></tr> <tr title="Name used to log in."><td>user name:</td><td><input type="text" name="adminlogin" size="30" class="formstyle" value=""></input></td></tr> <tr title="Make a secure password, use at least 9 characters. Use letters and numbers."><td>password:</td><td><input type="password" name="adminpassword" size="30" class="formstyle"></input></td></tr> <tr title="Retype password to avoid typing errors."><td>retype password:</td><td><input type="password" name="adminpassword2" size="30" class="formstyle"></input></td></tr> diff --git a/settings/index.php b/settings/index.php index ba11da08c0b..674e42b8d7c 100644 --- a/settings/index.php +++ b/settings/index.php @@ -33,8 +33,8 @@ $FIRSTRUN=false; OC_CONFIG::addForm('User Settings','/inc/templates/configform.php'); if(OC_USER::ingroup($_SESSION['username'],'admin')){ OC_CONFIG::addForm('System Settings','/inc/templates/adminform.php'); - OC_CONFIG::addForm('User Managment','/inc/templates/userform.php'); - OC_CONFIG::addForm('Plugin Managment','/inc/templates/pluginform.php'); + OC_CONFIG::addForm('User Management','/inc/templates/userform.php'); + OC_CONFIG::addForm('Plugin Management','/inc/templates/pluginform.php'); } echo('<div class="center">'); |