Merged from stable. Change language string file.

This commit is contained in:
ikawhero 2008-07-15 04:03:33 +00:00
parent 60d922d5f1
commit 8750134a46

View File

@ -1,10 +1,10 @@
<?php //$Id:
<?php //$Id
class profile_define_checkbox extends profile_define_base {
function define_form_specific(&$form) {
/// select whether or not this should be checked by default
$form->addElement('selectyesno', 'defaultdata', get_string('profiledefaultchecked', 'profilefield_checkbox'));
$form->addElement('selectyesno', 'defaultdata', get_string('profiledefaultchecked', 'admin'));
$form->setDefault('defaultdata', 0); // defaults to 'no'
$form->setType('defaultdata', PARAM_BOOL);
}