MDL-60439 block_tags: Removing extra var assign

This commit is contained in:
David Monllao
2017-12-27 17:54:55 +01:00
parent 6e02b56f2a
commit 1b374b4f2c
+1 -1
View File
@@ -45,7 +45,7 @@ class block_tags extends block_base {
if (empty($this->config->title)) {
$this->title = get_string('pluginname', 'block_tags');
} else {
$this->title = $this->title = format_string($this->config->title, true, ['context' => $this->context]);
$this->title = format_string($this->config->title, true, ['context' => $this->context]);
}
}