diff options
author | friendica <info@friendica.com> | 2013-07-02 22:22:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-07-02 22:22:13 -0700 |
commit | 23d7eab76104a44a70702f8fcc612f7ffe88a615 (patch) | |
tree | 1692492db5b770195615c9f60f33ca062b204dc2 /include | |
parent | d3b745db5d8d10aa92f1e41f61adc1f7efdf0753 (diff) | |
download | volse-hubzilla-23d7eab76104a44a70702f8fcc612f7ffe88a615.tar.gz volse-hubzilla-23d7eab76104a44a70702f8fcc612f7ffe88a615.tar.bz2 volse-hubzilla-23d7eab76104a44a70702f8fcc612f7ffe88a615.zip |
age was not syncing to the directory
Diffstat (limited to 'include')
-rw-r--r-- | include/zot.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index f10a02d47..ea80ebc1d 100644 --- a/include/zot.php +++ b/include/zot.php @@ -1328,6 +1328,7 @@ function import_directory_profile($hash,$profile) { $x = q("update xprof set xprof_desc = '%s', xprof_dob = '%s', + xprof_age = %d xprof_gender = '%s', xprof_marital = '%s', xprof_sexual = '%s', @@ -1339,6 +1340,7 @@ function import_directory_profile($hash,$profile) { where xprof_hash = '%s' limit 1", dbesc($arr['xprof_desc']), dbesc($arr['xprof_dob']), + intval($arr['xprof_age']), dbesc($arr['xprof_gender']), dbesc($arr['xprof_marital']), dbesc($arr['xprof_sexual']), @@ -1353,10 +1355,11 @@ function import_directory_profile($hash,$profile) { } else { $update = true; - $x = q("insert into xprof (xprof_hash, xprof_desc, xprof_dob, xprof_gender, xprof_marital, xprof_sexual, xprof_locale, xprof_region, xprof_postcode, xprof_country, xprof_keywords) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ", + $x = q("insert into xprof (xprof_hash, xprof_desc, xprof_dob, xprof_age, xprof_gender, xprof_marital, xprof_sexual, xprof_locale, xprof_region, xprof_postcode, xprof_country, xprof_keywords) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s') ", dbesc($arr['xprof_hash']), dbesc($arr['xprof_desc']), dbesc($arr['xprof_dob']), + intval($arr['xprof_age']), dbesc($arr['xprof_gender']), dbesc($arr['xprof_marital']), dbesc($arr['xprof_sexual']), |