mirror of
https://github.com/moodle/moodle.git
synced 2025-05-02 14:28:30 +02:00
"MDL-18540, use admin_setting_configselect to set option"
This commit is contained in:
parent
50da63ebd9
commit
408278ba12
@ -234,11 +234,11 @@ $ADMIN->add('server', new admin_externalpage('phpinfo', get_string('phpinfo'), "
|
|||||||
// "performance" settingpage
|
// "performance" settingpage
|
||||||
$temp = new admin_settingpage('performance', get_string('performance', 'admin'));
|
$temp = new admin_settingpage('performance', get_string('performance', 'admin'));
|
||||||
|
|
||||||
$temp->add(new admin_setting_special_selectsetup('memorylimit', get_string('memorylimit', 'admin'),
|
$temp->add(new admin_setting_configselect('memorylimit', get_string('memorylimit', 'admin'),
|
||||||
get_string('configmemorylimit', 'admin'), 0,
|
get_string('configmemorylimit', 'admin'), '128M',
|
||||||
// if this option is set to 0, default 128M will be used
|
// if this option is set to 0, default 128M will be used
|
||||||
array( '64M' => '64M',
|
array( '64M' => '64M',
|
||||||
'0' => '128M',
|
'128M' => '128M',
|
||||||
'256M' => '256M',
|
'256M' => '256M',
|
||||||
'1024M' => '1024M'
|
'1024M' => '1024M'
|
||||||
)));
|
)));
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
// This is compared against the values stored in the database to determine
|
// This is compared against the values stored in the database to determine
|
||||||
// whether upgrades should be performed (see lib/db/*.php)
|
// whether upgrades should be performed (see lib/db/*.php)
|
||||||
|
|
||||||
$version = 2009032001; // YYYYMMDD = date of the last version bump
|
$version = 2009033001; // YYYYMMDD = date of the last version bump
|
||||||
// XX = daily increments
|
// XX = daily increments
|
||||||
|
|
||||||
$release = '2.0 dev (Build: 20090330)'; // Human-friendly version name
|
$release = '2.0 dev (Build: 20090330)'; // Human-friendly version name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user