blob: dd3e083010016d8b06d0bdad091c0cbca524f8c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php
/**
* Updates the basic settings for the primary site object.
*
* Basic site settings are saved as metadata on the site object,
* with the exception of the default language, which is saved in
* the config table.
*
* @package Elgg.Core
* @subpackage Administration.Site
*/
admin_gatekeeper();
if (datalist_get('default_site')) {
$site = get_entity(datalist_get('default_site'));
if (!($site instanceof ElggSite)) {
throw new InstallationException(elgg_echo('InvalidParameterException:NonElggSite'));
}
$site->description = get_input('sitedescription');
$site->name = get_input('sitename');
$site->email = get_input('siteemail');
$site->save();
set_config('language', get_input('language'), $site->getGUID());
}
forward($_SERVER['HTTP_REFERER']);
|