Update the name in the "self" contact when it is changed.

This commit is contained in:
Michael Vogel 2015-07-14 22:24:43 +02:00
parent 4689f44819
commit 6800b07fc5
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())
);