diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-14 12:26:08 +0000 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-14 12:26:08 +0000 |
commit | 082ef8b950cbd3f1941a188a5993f1f9d2cf0ec6 (patch) | |
tree | 15ef2df5a74cd6f9ad587417979ed7129dfb81d8 /boot.php | |
parent | 7a19bd7fb35f5b41db81e9a2397ea085a165a94a (diff) | |
parent | 233903c84428b9322eaea94bf22f6ae972e44332 (diff) | |
download | volse-hubzilla-082ef8b950cbd3f1941a188a5993f1f9d2cf0ec6.tar.gz volse-hubzilla-082ef8b950cbd3f1941a188a5993f1f9d2cf0ec6.tar.bz2 volse-hubzilla-082ef8b950cbd3f1941a188a5993f1f9d2cf0ec6.zip |
Merge pull request #741 from dawnbreak/docu
Add security logger to RedDAV.
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -51,12 +51,21 @@ define ( 'ZOT_REVISION', 1 ); define ( 'DB_UPDATE_VERSION', 1131 ); +/** + * Constant with a HTML line break. + * + * Contains a HTML line break (br) element and a real carriage return with line + * feed for the source. + * This can be used in HTML and JavaScript where needed a line break. + * + * @var string + */ 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 +define ( 'DIRECTORY_MODE_NORMAL', 0x0000); // This is technically DIRECTORY_MODE_TERTIARY, but it's the default, hence 0x0000 define ( 'DIRECTORY_MODE_PRIMARY', 0x0001); define ( 'DIRECTORY_MODE_SECONDARY', 0x0002); define ( 'DIRECTORY_MODE_STANDALONE', 0x0100); |