From 0b87ace9b46f98dc8ebeffded3c4daf4c313d04b Mon Sep 17 00:00:00 2001 From: Peter Rotich <peter@osticket.com> Date: Wed, 25 Jul 2012 12:04:50 -0400 Subject: [PATCH] Add ability to overwrite (pre-declare) client's login page function --- secure.inc.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/secure.inc.php b/secure.inc.php index 3096b3503..450109798 100644 --- a/secure.inc.php +++ b/secure.inc.php @@ -16,9 +16,18 @@ if(!strcasecmp(basename($_SERVER['SCRIPT_NAME']),basename(__FILE__))) die('Kwaheri!'); if(!file_exists('client.inc.php')) die('Fatal Error.'); require_once('client.inc.php'); + +//Client Login page: Ajax interface can pre-declare the function to trap logins. +if(!function_exists('clientLoginPage')) { + function clientLoginPage($msg ='') { + require('./login.php'); + exit; + } +} + //User must be logged in! if(!$thisclient || !$thisclient->getId() || !$thisclient->isValid()){ - require('./login.php'); + clientLoginPage(); exit; } $thisclient->refreshSession(); -- GitLab