diff options
author | redmatrix <mike@macgirvin.com> | 2016-09-26 18:17:38 -0700 |
---|---|---|
committer | redmatrix <mike@macgirvin.com> | 2016-09-26 18:17:38 -0700 |
commit | 4663278f52fd11c1014d13151af2bc6ef1392c7d (patch) | |
tree | 5ea36ed7db723a1d0abfd99c5e7d21f9e72cf12a /include/channel.php | |
parent | 5716556766eb4e329f0c6c1bc899a7621cbcd5a5 (diff) | |
parent | cacdac16aa104eb1308f69f24fef31f682934fca (diff) | |
download | volse-hubzilla-4663278f52fd11c1014d13151af2bc6ef1392c7d.tar.gz volse-hubzilla-4663278f52fd11c1014d13151af2bc6ef1392c7d.tar.bz2 volse-hubzilla-4663278f52fd11c1014d13151af2bc6ef1392c7d.zip |
Merge branch 'nulldate' into dev
Diffstat (limited to 'include/channel.php')
-rw-r--r-- | include/channel.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/channel.php b/include/channel.php index 5beb4a53c..c86cea6f1 100644 --- a/include/channel.php +++ b/include/channel.php @@ -1212,7 +1212,7 @@ function advanced_profile(&$a) { if(App::$profile['partner']) $profile['marital']['partner'] = bbcode(App::$profile['partner']); - if(strlen(App::$profile['howlong']) && App::$profile['howlong'] !== NULL_DATE) { + if(strlen(App::$profile['howlong']) && App::$profile['howlong'] > NULL_DATE) { $profile['howlong'] = relative_date(App::$profile['howlong'], t('for %1$d %2$s')); } |