MDL-52045 block_tags: Fix invalid has_config() declaration

As the settings.php has been removed in MDL-51132, the block should no
longer declare it has global configuration.
This commit is contained in:
David Mudrák
2015-11-09 09:34:53 +01:00
parent 1533fca4b5
commit afb52b6f31
-4
View File
@@ -31,10 +31,6 @@ class block_tags extends block_base {
return true;
}
public function has_config() {
return true;
}
public function applicable_formats() {
return array('all' => true);
}