From ddca3fc89a7c1ce26e33020b10401b4eb4592194 Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 2 May 2008 12:58:52 +0000 Subject: Fixed a bug where the site was private unless you were logged out ... git-svn-id: https://code.elgg.org/elgg/trunk@622 36083f99-b078-4883-b0ff-0f9b5a30f544 --- actions/systemsettings/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php index d1ed6b6a2..67073e6f8 100644 --- a/actions/systemsettings/install.php +++ b/actions/systemsettings/install.php @@ -20,6 +20,7 @@ $site = new ElggSite(); $site->name = get_input('sitename'); $site->url = get_input('wwwroot'); + $site->access_id = 2; // The site is public $site->save(); datalist_set('path',get_input('path')); -- cgit v1.2.3