From 0ad0ddd1ea6faa3041d806cdcd1c191c7329655e Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Wed, 4 Jun 2014 11:25:38 +0800 Subject: [PATCH] MDL-18162 mod_forum: Correct @param type in phpdoc to use stdClass --- mod/forum/search.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/forum/search.php b/mod/forum/search.php index 3c8db0da9b6..96f6f53d30c 100644 --- a/mod/forum/search.php +++ b/mod/forum/search.php @@ -299,7 +299,7 @@ echo $OUTPUT->footer(); /** * Print a full-sized search form for the specified course. * - * @param object $course The Course that will be searched. + * @param stdClass $course The Course that will be searched. * @return void The function prints the form. */ function forum_print_big_search_form($course) { @@ -446,7 +446,7 @@ function forum_clean_search_terms($words, $prefix='') { /** * Retrieve a list of the forums that this user can view. * - * @param object $course The Course to use. + * @param stdClass $course The Course to use. * @return array A set of formatted forum names stored against the forum id. */ function forum_menu_list($course) {