Merge pull request #1761 from annando/1507-update-name

Update the name in the "self" contact when it is changed.
This commit is contained in:
Tobias Diekershoff 2015-07-15 07:53:36 +02:00
commit 74a2f58efb
1 changed files with 2 additions and 1 deletions

View File

@ -470,7 +470,8 @@ function profiles_post(&$a) {
if($namechanged && $is_default) {
$r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d",
$r = q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d",
dbesc($name),
dbesc(datetime_convert()),
intval(local_user())
);