aboutsummaryrefslogtreecommitdiff
path: root/actions/systemsettings/install.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-25 10:30:20 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-25 10:30:20 +0000
commit627060b324f43ebe63af4a705a70673096f33607 (patch)
tree46bca50d3a535a56166186152f76529ca2171b9a /actions/systemsettings/install.php
parent92c64ceb9fc3b1d5931336d18c78a4176eac6463 (diff)
downloadelgg-627060b324f43ebe63af4a705a70673096f33607.tar.gz
elgg-627060b324f43ebe63af4a705a70673096f33607.tar.bz2
Now possible to specify a site description.
git-svn-id: https://code.elgg.org/elgg/trunk@1523 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/systemsettings/install.php')
-rw-r--r--actions/systemsettings/install.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/systemsettings/install.php b/actions/systemsettings/install.php
index db7b89a88..f6832843e 100644
--- a/actions/systemsettings/install.php
+++ b/actions/systemsettings/install.php
@@ -19,7 +19,8 @@
$site = new ElggSite();
$site->name = get_input('sitename');
- $site->url = get_input('wwwroot');
+ $site->url = get_input('wwwroot');
+ $site->description = get_input('sitedescription');
$site->access_id = 2; // The site is public
$guid = $site->save();