File "makeSecure.php"

Full Path: /home/limout/public_html/CablesPireV2-20240827214508/makeSecure.php
File size: 161 bytes
MIME-type: text/x-php; charset=us-ascii
Charset: utf-8

<?php
	require('LoginSystem.class.php');
	
	$loginSys = new LoginSystem();
	 
	if(!$loginSys->isLoggedIn())
		{
			header("Location: " . $sUrl );
			exit;
		}
?>