diff options
author | Friendika <info@friendika.com> | 2011-10-20 14:55:40 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-10-20 14:55:40 -0700 |
commit | bef7a5d66bf7ef26e0d4da1c6209f3e23b0ccffe (patch) | |
tree | 889de056b7586f19b8ee3aff790c06987e949dd0 /boot.php | |
parent | da416e0181663b33304eadc0b1db228e6f1f5b7d (diff) | |
download | volse-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.php | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; |