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

Commit c3482fb

Browse files
committed
Class renaming
1 parent 904af31 commit c3482fb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/Auth/Process/ForceAup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ public function process(&$request)
188188
$request[self::PERUN_USER_AUP_ATTR] = $this->perunUserAupAttr;
189189
$request['newAups'] = $newAups;
190190
$id = SimpleSAML_Auth_State::saveState($request, 'perun:forceAup');
191-
$url = SimpleSAML_Module::getModuleURL('perun/force_aup_page.php');
191+
$url = SimpleSAML\Module::getModuleURL('perun/force_aup_page.php');
192192
\SimpleSAML\Utils\HTTP::redirectTrustedURL($url, array('StateId' => $id));
193193
}
194194

lib/Auth/Process/PerunIdentity.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,13 +126,13 @@ public function process(&$request)
126126
$user = $this->adapter->getPerunUser($idpEntityId, $uids);
127127

128128
if ($user === null) {
129-
SimpleSAML_Logger::info('Perun user with identity/ies: '. implode(',', $uids).' has NOT been found. He is being redirected to register.');
129+
SimpleSAML\Logger::info('Perun user with identity/ies: '. implode(',', $uids).' has NOT been found. He is being redirected to register.');
130130

131131
$vo = $this->adapter->getVoByShortName($this->voShortName);
132132

133133
$spGroups = $this->adapter->getSpGroups($spEntityId, $vo);
134134

135-
SimpleSAML_Logger::debug("SP GROUPs - ".var_export($spGroups, true));
135+
SimpleSAML\Logger::debug("SP GROUPs - ".var_export($spGroups, true));
136136

137137
$this->register($request, $this->registerUrl, $this->callbackParamName, $vo, $spGroups, $this->interface);
138138
}

lib/DatabaseConnector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getConnection()
5959
{
6060
$conn = mysqli_init();
6161
if ($this->encryption === true) {
62-
SimpleSAML_Logger::debug("Getting connection with encryption.");
62+
SimpleSAML\Logger::debug("Getting connection with encryption.");
6363
mysqli_ssl_set($conn, $this->sslKey, $this->sslCert, $this->sslCA, $this->sslCAPath, null);
6464
if ($this->port === null) {
6565
mysqli_real_connect($conn, $this->serverName, $this->username, $this->password, $this->databaseName);

templates/force-aup-tpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
?>
1616

1717
<h3><?php echo $this->t('{perun:perun:force-aup-tpl_aup_accept}'); ?></h3>
18-
<form method="post" action="<?php echo SimpleSAML_Module::getModuleURL('perun/force_aup_continue.php'); ?>" >
18+
<form method="post" action="<?php echo SimpleSAML\Module::getModuleURL('perun/force_aup_continue.php'); ?>" >
1919

2020
<?php
2121
foreach ($newAups as $key => $aup) {

0 commit comments

Comments
 (0)