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 /boot.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 'boot.php')
-rwxr-xr-x | boot.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -50,9 +50,9 @@ define ( 'ZOT_REVISION', 1 ); define ( 'DB_UPDATE_VERSION', 1129 ); -define ( 'EOL', '<br />' . "\r\n" ); -define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); - +define ( 'EOL', '<br />' . "\r\n" ); +define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); +define ( 'NULL_DATE', '0000-00-00 00:00:00' ); define ( 'TEMPLATE_BUILD_PATH', 'store/[data]/smarty3' ); define ( 'DIRECTORY_MODE_NORMAL', 0x0000); // This is technically DIRECTORY_MODE_TERTIARY, but it's the default, hence 0x0000 |