auth: store global user metadata in User object
[minimedit.git] / contact.php
index 7ffa40926f520546ec9567c99705b94a91800800..b50537517d7b68952f50922a53c244b7763e8e91 100644 (file)
@@ -2,8 +2,8 @@
 $error = NULL;
 if ($_POST) {
        global $User;
-       if (!empty($User)) {
-               $_REQUEST['login'] = $User['name'];
+       if ($User) {
+               $_REQUEST['login'] = $User->login;
        }
        $error = mailform($_REQUEST);
        if (!empty($error)) {