Skip to content
This repository was archived by the owner on Sep 19, 2022. It is now read-only.

Commit 4207552

Browse files
committed
Merge pull request #35 from melanger/patch-7
Fixed the bug in using double '$'
1 parent 2145a7d commit 4207552

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
5+
#### Fixed
6+
- Fixed the bug in using double '$'
57

68
## [v3.2.0]
79
#### Added

lib/Auth/Process/DatabaseCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ public function insertLogin(&$request, &$date)
7272
}
7373

7474
if ($this->databaseConnector->getMode() === 'IDP') {
75-
$idpName = $$this->databaseConnector->getIdpName();
76-
$idpEntityID = $$this->databaseConnector->getIdpEntityId();
75+
$idpName = $this->databaseConnector->getIdpName();
76+
$idpEntityID = $this->databaseConnector->getIdpEntityId();
7777
} elseif ($this->databaseConnector->getMode() === 'SP') {
78-
$spEntityId = $$this->databaseConnector->getSpEntityId();
79-
$spName = $$this->databaseConnector->getSpName();
78+
$spEntityId = $this->databaseConnector->getSpEntityId();
79+
$spName = $this->databaseConnector->getSpName();
8080
}
8181

8282
$year = $date->format('Y');

0 commit comments

Comments
 (0)