diff options
-rw-r--r-- | Zotlabs/Storage/Directory.php | 1 | ||||
-rwxr-xr-x | boot.php | 2 | ||||
-rw-r--r-- | install/schema_postgres.sql | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php index 0860f99a1..15e06e28f 100644 --- a/Zotlabs/Storage/Directory.php +++ b/Zotlabs/Storage/Directory.php @@ -371,6 +371,7 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { ); if ($r) { + require_once('include/attach.php'); $result = attach_mkdir($r[0], $this->auth->observer, array('filename' => $name, 'folder' => $this->folder_hash)); if($result['success']) { @@ -44,7 +44,7 @@ require_once('include/account.php'); define ( 'PLATFORM_NAME', 'hubzilla' ); -define ( 'STD_VERSION', '1.10RC' ); +define ( 'STD_VERSION', '1.10' ); define ( 'ZOT_REVISION', '1.1' ); define ( 'DB_UPDATE_VERSION', 1180 ); diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 1a770d4ff..8a387a8fe 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -1085,7 +1085,7 @@ create index "reg_uid" on register ("uid"); CREATE TABLE "session" ( "id" serial, "sid" text NOT NULL, - "sess_data" text NOT NULL, + "sess_data" text NOT NULL DEFAULT '', "expire" numeric(20) NOT NULL, PRIMARY KEY ("id") ); |