MDL-60439 block_tags: Removing extra var assign

This commit is contained in:
David Monllao 2017-12-26 10:18:58 +01:00
parent 6e02b56f2a
commit 1b374b4f2c

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]);
}
}