diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-17 16:21:32 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-17 16:21:32 -0400 |
commit | 1950efda80012ebeded8e7da71c7293b7ee86c08 (patch) | |
tree | e9b7bea308f7f6e33310c3c88635b648a9c47c39 /actions/register.php | |
parent | 7ee294de755a919237f9e58032c27be9492391a2 (diff) |
save profile url
darcs-hash:20080517202132-84dde-78c7fe9f22aa28f33e9e00432f5cf6436b64e6b5.gz
Diffstat (limited to 'actions/register.php')
-rw-r--r-- | actions/register.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/actions/register.php b/actions/register.php index 5c30fa1b3..fcf371d3a 100644 --- a/actions/register.php +++ b/actions/register.php @@ -81,6 +81,7 @@ class RegisterAction extends Action { # TODO: wrap this in a transaction! $profile = new Profile(); $profile->nickname = $nickname; + $profile->profileurl = common_profile_url($nickname); $profile->created = DB_DataObject_Cast::dateTime(); # current time $id = $profile->insert(); if (!$id) { |