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"> <html lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Authorize <?=$this->e($client->getName)?></title> <title>Authorize <?=$this->e($client->getName())?></title>
</head> </head>
<body> <body>
<h1> <h1>
Authorize <?=$this->e($client->getName)?> Authorize <?=$this->e($client->getName())?>
</h1> </h1>
<p> <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> </p>
<ul> <ul>
<?php foreach ($scopes as $scope): ?> <?php foreach ($scopes as $scope): ?>
<li><?=$scope->getIdentifier?></li> <li><?=$scope->getIdentifier()?></li>
<?php endforeach; ?> <?php endforeach; ?>
</ul> </ul>