diff options
author | friendica <info@friendica.com> | 2014-09-08 20:35:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-08 20:35:15 -0700 |
commit | c6d07feff575862b5db8d05e02be6375e51034c7 (patch) | |
tree | 8d1bf75a545075753033c47ee28f4d4ae2a96517 /mod/profiles.php | |
parent | 8fbeb370db7d1ec16a2f221fb7f022aebe7be109 (diff) | |
download | volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.tar.gz volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.tar.bz2 volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.zip |
This is long overdue - use a symblic constant NULL_DATE instead of the easily mis-typed sequence '0000-00-00 00:00:00'
Diffstat (limited to 'mod/profiles.php')
-rw-r--r-- | mod/profiles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/profiles.php b/mod/profiles.php index 6361f56a3..063e714e7 100644 --- a/mod/profiles.php +++ b/mod/profiles.php @@ -304,7 +304,7 @@ function profiles_post(&$a) { $with = ((x($_POST,'with')) ? escape_tags(trim($_POST['with'])) : ''); if(! strlen($howlong)) - $howlong = '0000-00-00 00:00:00'; + $howlong = NULL_DATE; else $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong); @@ -707,7 +707,7 @@ logger('extra_fields: ' . print_r($extra_fields,true)); '$marital' => marital_selector($r[0]['marital']), '$marital_min' => marital_selector_min($r[0]['marital']), '$with' => $r[0]['with'], - '$howlong' => ($r[0]['howlong'] === '0000-00-00 00:00:00' ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])), + '$howlong' => ($r[0]['howlong'] === NULL_DATE ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])), '$sexual' => sexpref_selector($r[0]['sexual']), '$sexual_min' => sexpref_selector_min($r[0]['sexual']), '$about' => $r[0]['about'], |