mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-13 23:32:20 +05:30
Fix for method calls
This commit is contained in:
parent
6dd4caf056
commit
4234b69f3a
@ -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>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user