Merge branch 'wip-MDL-30921-m24' of git://github.com/samhemelryk/moodle

This commit is contained in:
Dan Poltawski 2012-11-07 10:51:06 +08:00
commit e830d6f98e
11 changed files with 119 additions and 6 deletions

View file

@ -42,6 +42,15 @@ class block_search_forums extends block_base {
function applicable_formats() {
return array('site' => true, 'course' => true);
}
/**
* Returns the role that best describes the forum search block.
*
* @return string
*/
public function get_aria_role() {
return 'search';
}
}