From 2b2985012334af54a3ae9cdd684db32087c41d0d Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <jkowalsk@student.agh.edu.pl>
Date: Fri, 04 Sep 2015 22:34:31 +0000
Subject: [PATCH] Add missing return statement in getCurrentUrl() method
---
uphpCAS.php | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/uphpCAS.php b/uphpCAS.php
index 5ded1ea..b0d510b 100644
--- a/uphpCAS.php
+++ b/uphpCAS.php
@@ -51,6 +51,8 @@
$url .= ':'.$port;
}
$url .= $_SERVER['REQUEST_URI'];
+
+ return $url;
}
public function getServerUrl() {
--
Gitblit v1.9.1