diff options
author | root <root@diekershoff.homeunix.net> | 2011-01-03 09:27:13 +0100 |
---|---|---|
committer | root <root@diekershoff.homeunix.net> | 2011-01-03 09:27:13 +0100 |
commit | f3005918aff04fc435d0f526bf235bd95468294c (patch) | |
tree | f334d76dbd89093d8448e13e62f8b094159e576c /mod/profiles.php | |
parent | 0b4a6f8eaca0d1396e7e944cd4735a573bd1d111 (diff) | |
parent | d92659560b8edd0594b587103b43ad5bd5012639 (diff) | |
download | volse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.tar.gz volse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.tar.bz2 volse-hubzilla-f3005918aff04fc435d0f526bf235bd95468294c.zip |
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/profiles.php')
-rw-r--r-- | mod/profiles.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/profiles.php b/mod/profiles.php index e99e0f288..1c75dc0eb 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -265,13 +265,14 @@ function profiles_content(&$a) { dbesc($name), dbesc($r1[0]['name']), dbesc($r1[0]['photo']), - dbesc($ra[0]['thumb']) + dbesc($r1[0]['thumb']) ); $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1", intval(local_user()), dbesc($name) ); + notice( t('New profile created.') . EOL); if(count($r3) == 1) goaway($a->get_baseurl() . '/profiles/' . $r3[0]['id']); |