MDL-29079 Administration: Added space between checkboxes on general backup setting page

This commit is contained in:
Rajesh Taneja
2011-09-19 13:37:48 +08:00
parent 3df2ab8d98
commit facb211577
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -4109,7 +4109,7 @@ class admin_setting_configcheckbox_with_lock extends admin_setting_configcheckbo
$checkboxparams['checked'] = 'checked';
}
$lockcheckboxparams = array('type'=>'checkbox', 'id'=>$id.'_locked','name'=>$fullname.'[locked]', 'value'=>1, 'class'=>'form-checkbox');
$lockcheckboxparams = array('type'=>'checkbox', 'id'=>$id.'_locked','name'=>$fullname.'[locked]', 'value'=>1, 'class'=>'form-checkbox locked-checkbox');
if (!empty($data['locked'])) { // convert to strings before comparison
$lockcheckboxparams['checked'] = 'checked';
}