From 1b374b4f2cce32518cfb4860b05f66b368e8a4ae Mon Sep 17 00:00:00 2001 From: David Monllao Date: Tue, 26 Dec 2017 10:18:58 +0100 Subject: [PATCH] MDL-60439 block_tags: Removing extra var assign --- blocks/tags/block_tags.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blocks/tags/block_tags.php b/blocks/tags/block_tags.php index 40d4000818b..f263ddf86de 100644 --- a/blocks/tags/block_tags.php +++ b/blocks/tags/block_tags.php @@ -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]); } }