login/edit: admin override as template parameter
[minimedit.git] / login / edit.php
index e39af548a3692549213c7756215976222d35dcbf..46b6132a6213f5b10ec2ff01292717468f543755 100644 (file)
@@ -4,8 +4,9 @@ if (empty($user = &$User)) {
        return;
 }
 
-if (!empty($User['admin']) and $Page == 'login/edit' and $Args) {
-       $username = strtolower(ltrim($Args, '/'));
+if (!empty($User['admin']) and !empty($Place['user'])) {
+       $username = strtolower($Place['user']);
+       unset($user);
        $user = [
                'dir' => "profile/$username",
                'name' => $username,
@@ -45,7 +46,7 @@ foreach ($cols as $col => &$colconf) {
 }
 
 $cols = [
-       'login' => [
+       'username' => [
                'label' => 'login',
                'value' => $user['name'],
                'target' => NULL,
@@ -138,7 +139,9 @@ if ($_POST) {
                }
                $cols[$col]['value'] = $val;  # update form value
                if (empty($cols[$col]['target'])) {
-                       $colwarn[$col] = "Kan niet worden aangepast.";
+                       if (empty($cols[$col]['input'])) {
+                               $colwarn[$col] = "Kan niet worden aangepast.";
+                       }
                        continue;
                }
                if (file_put_contents($cols[$col]['target'], $val) === FALSE) {