mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
gender will be updated in the profiles as well.
This commit is contained in:
parent
2f400627c7
commit
105d6a22a4
1 changed files with 2 additions and 1 deletions
|
@ -485,10 +485,11 @@ function profiles_post(&$a) {
|
|||
|
||||
if($is_default) {
|
||||
|
||||
$r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s' WHERE `self` = 1 AND `uid` = %d",
|
||||
$r = q("UPDATE `contact` SET `about` = '%s', `location` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `self` = 1 AND `uid` = %d",
|
||||
dbesc($about),
|
||||
dbesc($locality),
|
||||
dbesc($pub_keywords),
|
||||
dbesc($gender),
|
||||
intval(local_user())
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue