MDL-31203 mod_forum: advanced search posts must be newer older than date, reverts...
authorKanika Goyal <kanikagoyal999@gmail.com>
Sat, 31 Mar 2012 13:21:16 +0000 (18:51 +0530)
committerDan Poltawski <dan@moodle.com>
Mon, 2 Jul 2012 07:24:10 +0000 (15:24 +0800)
mod/forum/search.php

index daa7bdc..ebbc99f 100644 (file)
@@ -369,11 +369,11 @@ 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::select_time('days', 'fromday', $dateto)
-               . html_writer::select_time('months', 'frommonth', $dateto)
-               . html_writer::select_time('years', 'fromyear', $dateto)
-               . html_writer::select_time('hours', 'fromhour', $dateto)
-               . html_writer::select_time('minutes', 'fromminute', $dateto);
+    $selectors = html_writer::select_time('days', 'today', $dateto)
+               . html_writer::select_time('months', 'tomonth', $dateto)
+               . html_writer::select_time('years', 'toyear', $dateto)
+               . html_writer::select_time('hours', 'tohour', $dateto)
+               . html_writer::select_time('minutes', 'tominute', $dateto);
     echo $selectors;
 
     echo '<input type="hidden" name="htoday" value="0" />';