diff options
author | Mario <mario@mariovavti.com> | 2022-10-26 15:56:41 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-26 15:56:41 +0000 |
commit | 9c117ffa0546d6131310ae175e16e5ebf63992a1 (patch) | |
tree | 45d9e0f02c45ce487bce53be9140c8b7a293b218 /Zotlabs/Lib/Libzotdir.php | |
parent | 9e95f189ed3d5b228b8133f04f66aca6de75b1ab (diff) | |
download | volse-hubzilla-9c117ffa0546d6131310ae175e16e5ebf63992a1.tar.gz volse-hubzilla-9c117ffa0546d6131310ae175e16e5ebf63992a1.tar.bz2 volse-hubzilla-9c117ffa0546d6131310ae175e16e5ebf63992a1.zip |
fix php warnings
Diffstat (limited to 'Zotlabs/Lib/Libzotdir.php')
-rw-r--r-- | Zotlabs/Lib/Libzotdir.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/Libzotdir.php b/Zotlabs/Lib/Libzotdir.php index 3ee5c429a..fa691080f 100644 --- a/Zotlabs/Lib/Libzotdir.php +++ b/Zotlabs/Lib/Libzotdir.php @@ -457,12 +457,13 @@ class Libzotdir { $arr['xprof_hash'] = $hash; $arr['xprof_dob'] = '0000-00-00'; + if (isset($profile['birthday'])) { $arr['xprof_dob'] = (($profile['birthday'] === '0000-00-00') ? $profile['birthday'] : datetime_convert('', '', $profile['birthday'], 'Y-m-d')); // !!!! check this for 0000 year } - $arr['xprof_dob'] = ((isset($profile['birthday']) && $profile['birthday'] === '0000-00-00') ? $profile['birthday'] : datetime_convert('','',$profile['birthday'],'Y-m-d')); // !!!! check this for 0000 year + $arr['xprof_age'] = ((isset($profile['age']) && $profile['age']) ? intval($profile['age']) : 0); $arr['xprof_desc'] = ((isset($profile['description']) && $profile['description']) ? htmlspecialchars($profile['description'], ENT_COMPAT,'UTF-8',false) : ''); $arr['xprof_gender'] = ((isset($profile['gender']) && $profile['gender']) ? htmlspecialchars($profile['gender'], ENT_COMPAT,'UTF-8',false) : ''); |