Fix for method calls

This commit is contained in:
Alex Bilbie 2016-02-12 14:18:10 +00:00
parent 6dd4caf056
commit 4234b69f3a

View File

@ -2,22 +2,22 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>Authorize <?=$this->e($client->getName)?></title>
<title>Authorize <?=$this->e($client->getName())?></title>
</head>
<body>
<h1>
Authorize <?=$this->e($client->getName)?>
Authorize <?=$this->e($client->getName())?>
</h1>
<p>
Do you want to authorize <?=$this->e($client->getName)?> to access the following data?
Do you want to authorize <?=$this->e($client->getName())?> to access the following data?
</p>
<ul>
<?php foreach ($scopes as $scope): ?>
<li><?=$scope->getIdentifier?></li>
<li><?=$scope->getIdentifier()?></li>
<?php endforeach; ?>
</ul>