diff --git a/mod/forum/search.php b/mod/forum/search.php index fde49b55bb9..ba4472daf58 100644 --- a/mod/forum/search.php +++ b/mod/forum/search.php @@ -343,15 +343,15 @@ function forum_print_big_search_form($course) { } echo ' '; - $selectors = html_writer::label(get_string('day'), 'menufromday', false, array('class' => 'accesshide')) + $selectors = html_writer::label(get_string('days'), 'menufromday', false, array('class' => 'accesshide')) . html_writer::select_time('days', 'fromday', $datefrom) - . html_writer::label(get_string('month'), 'menufrommonth', false, array('class' => 'accesshide')) + . html_writer::label(get_string('months'), 'menufrommonth', false, array('class' => 'accesshide')) . html_writer::select_time('months', 'frommonth', $datefrom) - . html_writer::label(get_string('year'), 'menufromyear', false, array('class' => 'accesshide')) + . html_writer::label(get_string('years'), 'menufromyear', false, array('class' => 'accesshide')) . html_writer::select_time('years', 'fromyear', $datefrom) - . html_writer::label(get_string('hour'), 'menufromhour', false, array('class' => 'accesshide')) + . html_writer::label(get_string('hours'), 'menufromhour', false, array('class' => 'accesshide')) . html_writer::select_time('hours', 'fromhour', $datefrom) - . html_writer::label(get_string('minute'), 'menufromminute', false, array('class' => 'accesshide')) + . html_writer::label(get_string('minutes'), 'menufromminute', false, array('class' => 'accesshide')) . html_writer::select_time('minutes', 'fromminute', $datefrom); echo $selectors; echo ''; @@ -374,15 +374,15 @@ function forum_print_big_search_form($course) { } echo ' '; - $selectors = html_writer::label(get_string('day'), 'menutoday', false, array('class' => 'accesshide')) + $selectors = html_writer::label(get_string('days'), 'menutoday', false, array('class' => 'accesshide')) . html_writer::select_time('days', 'today', $dateto) - . html_writer::label(get_string('month'), 'menutomonth', false, array('class' => 'accesshide')) + . html_writer::label(get_string('months'), 'menutomonth', false, array('class' => 'accesshide')) . html_writer::select_time('months', 'tomonth', $dateto) - . html_writer::label(get_string('year'), 'menutoyear', false, array('class' => 'accesshide')) + . html_writer::label(get_string('years'), 'menutoyear', false, array('class' => 'accesshide')) . html_writer::select_time('years', 'toyear', $dateto) - . html_writer::label(get_string('hour'), 'menutohour', false, array('class' => 'accesshide')) + . html_writer::label(get_string('hours'), 'menutohour', false, array('class' => 'accesshide')) . html_writer::select_time('hours', 'tohour', $dateto) - . html_writer::label(get_string('minute'), 'menutominute', false, array('class' => 'accesshide')) + . html_writer::label(get_string('minutes'), 'menutominute', false, array('class' => 'accesshide')) . html_writer::select_time('minutes', 'tominute', $dateto); echo $selectors;