MDL-21695 Database module: removing help icon that is not used any more

This commit is contained in:
David Mudrak 2010-08-16 14:32:12 +00:00
parent 67b5883e7b
commit 676351d856
2 changed files with 0 additions and 2 deletions

View File

@ -29,7 +29,6 @@ $string['addcomment'] = 'Add comment';
$string['addentries'] = 'Add entries';
$string['addtemplate'] = 'Add template';
$string['advancedsearch'] = 'Advanced search';
$string['allowcomments'] = 'Allow comments?';
$string['allowratings'] = 'Allow posts to be rated?';
$string['alttext'] = 'Alternative text';
$string['approve'] = 'Approve';

View File

@ -48,7 +48,6 @@ class mod_data_mod_form extends moodleform_mod {
$ynoptions = array(0 => get_string('no'), 1 => get_string('yes'));
$mform->addElement('select', 'comments', get_string('comments', 'data'), $ynoptions);
$mform->setHelpButton('comments', array('comments', get_string('allowcomments', 'data'), 'data'));
$mform->addElement('select', 'approval', get_string('requireapproval', 'data'), $ynoptions);
$mform->addHelpButton('approval', 'requireapproval', 'data');