From 75c9bb66a9e94936878c28f795212e74641b830f Mon Sep 17 00:00:00 2001 From: Sergio Gomez <sergio@uco.es> Date: Wed, 12 Oct 2016 23:45:35 +0200 Subject: [PATCH] Fix object operator --- templates/metadata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/metadata.php b/templates/metadata.php index 6f58bad2c..cd43769c2 100644 --- a/templates/metadata.php +++ b/templates/metadata.php @@ -1,5 +1,5 @@ <?php -$this-data['header'] = $this->t($this->data['headerString']); +$this->data['header'] = $this->t($this->data['headerString']); $this->includeAtTemplateBase('includes/header.php'); ?> <h2><?php echo $this->data['header']; ?></h2> <p><?php echo $this->t('metadata_intro'); ?></p> -- GitLab