From ef8207ca88c22977e597c42858191ceaa5581673 Mon Sep 17 00:00:00 2001 From: tobyink <> Date: Mon, 20 Apr 2009 15:42:13 +0000 Subject: [PATCH] Forgot to do $user->save(). D'oh! --- web/edit_profile.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/edit_profile.php b/web/edit_profile.php index 95444769..fa334b14 100644 --- a/web/edit_profile.php +++ b/web/edit_profile.php @@ -88,6 +88,8 @@ if ($_POST['submit']) $user->location = $_POST['location']; $user->location_uri = $_POST['location_uri']; $user->avatar_uri = $_POST['avatar_uri']; + + $user->save(); } if (isset($errors[0])) @@ -96,7 +98,6 @@ if ($_POST['submit']) print_r($errors); exit; } - } if(isset($user->name)) -- GitLab