diff options
author | Malf Furious <m@lfurio.us> | 2016-03-05 17:03:58 -0500 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-03-05 17:03:58 -0500 |
commit | 4544b18f5bf1854456f2a835c7df0fc469ba144c (patch) | |
tree | 480d799683a865269e71244872c7084e6534d899 | |
parent | a68db47508b74ccd0d7e6f8529a0f98b59dd69e0 (diff) | |
download | scrott-4544b18f5bf1854456f2a835c7df0fc469ba144c.tar.gz scrott-4544b18f5bf1854456f2a835c7df0fc469ba144c.zip |
Add sec_verify_ip to app root controller
Diffstat (limited to '')
-rw-r--r-- | app/controller/root.control.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controller/root.control.php b/app/controller/root.control.php index 5b5dd8f..a9e23e9 100644 --- a/app/controller/root.control.php +++ b/app/controller/root.control.php @@ -45,6 +45,9 @@ class Root extends Controller } } + /* Assert session IP */ + $this->sec_verify_ip(); + /* Assert that a user is logged in */ if (!$this->getCurrentUser()) { |