aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-03-08 17:56:04 +1100
committerfriendica <info@friendica.com>2014-03-08 17:56:04 +1100
commitb2b5d5838a27a2d1bffb9106b4e3d41fcf28e8d9 (patch)
treebbb37c0212d3c0cbdf03f2e6afcaededd5c707ee /boot.php
parentd83ebcdab5239ab82054cbb93d05b343777f5f56 (diff)
parent70ff71c03b2e9663b4b6e3a536cd726749039a08 (diff)
downloadvolse-hubzilla-b2b5d5838a27a2d1bffb9106b4e3d41fcf28e8d9.tar.gz
volse-hubzilla-b2b5d5838a27a2d1bffb9106b4e3d41fcf28e8d9.tar.bz2
volse-hubzilla-b2b5d5838a27a2d1bffb9106b4e3d41fcf28e8d9.zip
Merge pull request #357 from beardy-unixer/master
Create sys channels
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index f4774c4ba..e368896ca 100755
--- a/boot.php
+++ b/boot.php
@@ -1179,6 +1179,13 @@ function check_config(&$a) {
$a->set_baseurl($a->get_baseurl());
+ // Make sure each site has a system channel. This is now created on install
+ // so we just need to keep this around a couple of weeks until the hubs that
+ // already exist have one
+ $syschan_exists = get_sys_channel();
+ if (! $syschan_exists)
+ create_sys_channel();
+
if($build != DB_UPDATE_VERSION) {
$stored = intval($build);
if(! $stored) {