aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-20 14:55:40 -0700
committerFriendika <info@friendika.com>2011-10-20 14:55:40 -0700
commitbef7a5d66bf7ef26e0d4da1c6209f3e23b0ccffe (patch)
tree889de056b7586f19b8ee3aff790c06987e949dd0 /boot.php
parentda416e0181663b33304eadc0b1db228e6f1f5b7d (diff)
downloadvolse-hubzilla-bef7a5d66bf7ef26e0d4da1c6209f3e23b0ccffe.tar.gz
volse-hubzilla-bef7a5d66bf7ef26e0d4da1c6209f3e23b0ccffe.tar.bz2
volse-hubzilla-bef7a5d66bf7ef26e0d4da1c6209f3e23b0ccffe.zip
bug #183 - strlen borking on sysmsg, which is now an array
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/boot.php b/boot.php
index b846bcd08..017e21814 100644
--- a/boot.php
+++ b/boot.php
@@ -8,7 +8,7 @@ require_once("include/pgettext.php");
require_once('include/nav.php');
define ( 'FRIENDIKA_PLATFORM', 'Free Friendika');
-define ( 'FRIENDIKA_VERSION', '2.3.1139' );
+define ( 'FRIENDIKA_VERSION', '2.3.1140' );
define ( 'DFRN_PROTOCOL_VERSION', '2.21' );
define ( 'DB_UPDATE_VERSION', 1097 );
@@ -238,7 +238,7 @@ class App {
public $contacts;
public $page_contact;
public $content;
- public $data;
+ public $data = array();
public $error = false;
public $cmd;
public $argv;
@@ -251,7 +251,7 @@ class App {
public $timezone;
public $interactive = true;
public $plugins;
- public $apps = Array();
+ public $apps = array();
public $identities;
private $scheme;