summaryrefslogtreecommitdiff
path: root/core/classes/Request.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-30 05:03:23 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-30 05:03:23 +0300
commit4f2d900af7636e6744ae14aeeefdf2d6080ac50a (patch)
tree1f80775437510591656e6ef13375516226ed27f3 /core/classes/Request.php
parenta16d070c4f8301a8b68220aca6d3573705be9025 (diff)
downloadclassroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.tar.gz
classroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.tar.bz2
classroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.zip
several mail options tested; mailhog (fake) mailer is working
Diffstat (limited to 'core/classes/Request.php')
-rw-r--r--core/classes/Request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/classes/Request.php b/core/classes/Request.php
index e1148b4..bc322a1 100644
--- a/core/classes/Request.php
+++ b/core/classes/Request.php
@@ -38,7 +38,7 @@ class Request
$this->HOST = $_SERVER['HTTP_HOST'];
$this->PORT = $_SERVER['SERVER_PORT'];
$this->TIME = $_SERVER['REQUEST_TIME'];
- $this->CLI_IP = $_SERVER['REMOTE_ADDR'];
+ $this->IP = $_SERVER['REMOTE_ADDR'];
$this->METHOD = strtolower($_SERVER['REQUEST_METHOD']);