mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
MDL-34565 - remove duplicate labeling
This commit is contained in:
parent
73b2ddddaa
commit
38befbef7a
@ -343,15 +343,10 @@ function forum_print_big_search_form($course) {
|
||||
}
|
||||
|
||||
echo '<input name="timefromrestrict" type="checkbox" value="1" alt="'.get_string('searchdatefrom', 'forum').'" onclick="return lockoptions(\'searchform\', \'timefromrestrict\', timefromitems)" '. $datefromchecked . ' /> ';
|
||||
$selectors = html_writer::label(get_string('days'), 'menufromday', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('days', 'fromday', $datefrom)
|
||||
. html_writer::label(get_string('months'), 'menufrommonth', false, array('class' => 'accesshide'))
|
||||
$selectors = html_writer::select_time('days', 'fromday', $datefrom)
|
||||
. html_writer::select_time('months', 'frommonth', $datefrom)
|
||||
. html_writer::label(get_string('years'), 'menufromyear', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('years', 'fromyear', $datefrom)
|
||||
. html_writer::label(get_string('hours'), 'menufromhour', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('hours', 'fromhour', $datefrom)
|
||||
. html_writer::label(get_string('minutes'), 'menufromminute', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('minutes', 'fromminute', $datefrom);
|
||||
echo $selectors;
|
||||
echo '<input type="hidden" name="hfromday" value="0" />';
|
||||
@ -374,15 +369,10 @@ function forum_print_big_search_form($course) {
|
||||
}
|
||||
|
||||
echo '<input name="timetorestrict" type="checkbox" value="1" alt="'.get_string('searchdateto', 'forum').'" onclick="return lockoptions(\'searchform\', \'timetorestrict\', timetoitems)" ' .$datetochecked. ' /> ';
|
||||
$selectors = html_writer::label(get_string('days'), 'menutoday', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('days', 'today', $dateto)
|
||||
. html_writer::label(get_string('months'), 'menutomonth', false, array('class' => 'accesshide'))
|
||||
$selectors = html_writer::select_time('days', 'today', $dateto)
|
||||
. html_writer::select_time('months', 'tomonth', $dateto)
|
||||
. html_writer::label(get_string('years'), 'menutoyear', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('years', 'toyear', $dateto)
|
||||
. html_writer::label(get_string('hours'), 'menutohour', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('hours', 'tohour', $dateto)
|
||||
. html_writer::label(get_string('minutes'), 'menutominute', false, array('class' => 'accesshide'))
|
||||
. html_writer::select_time('minutes', 'tominute', $dateto);
|
||||
echo $selectors;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user