aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-03 17:22:35 -0800
committerfriendica <info@friendica.com>2013-02-03 17:22:35 -0800
commit4ae5445e032aadd918dc75ca71bc6819f05bb2f4 (patch)
tree79d3c259b04fa336ac512cf85c9f1e056e21f899 /boot.php
parentb41106f2fbebfd0bbc2bfc70efd3421073469f44 (diff)
downloadvolse-hubzilla-4ae5445e032aadd918dc75ca71bc6819f05bb2f4.tar.gz
volse-hubzilla-4ae5445e032aadd918dc75ca71bc6819f05bb2f4.tar.bz2
volse-hubzilla-4ae5445e032aadd918dc75ca71bc6819f05bb2f4.zip
support for OS files and add directory support to file/attach object
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index daec5a09f..59cd3fd5c 100644
--- a/boot.php
+++ b/boot.php
@@ -16,7 +16,7 @@ require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica Red');
define ( 'FRIENDICA_VERSION', trim(file_get_contents('version.inc')) . 'R');
define ( 'ZOT_REVISION', 1 );
-define ( 'DB_UPDATE_VERSION', 1025 );
+define ( 'DB_UPDATE_VERSION', 1026 );
define ( 'EOL', '<br />' . "\r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@@ -223,6 +223,11 @@ define ( 'MAIL_ISREPLY', 0x0004);
define ( 'MAIL_SEEN', 0x0008);
+define ( 'ATTACH_FLAG_DIR', 0x0001);
+define ( 'ATTACH_FLAG_OS', 0x0002);
+
+
+
/**
* Maximum number of "people who like (or don't like) this" that we will list by name
*/