1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-16 20:28:28 +01:00

Fixes #4178 - blank page issue.

This commit is contained in:
Cameron 2020-05-27 10:36:17 -07:00
parent c901832c6e
commit 903be35f8c

View File

@ -8,7 +8,7 @@ if (!defined('e107_INIT'))
define('e_IFRAME', true);
require_once(HEADERF);
class unsubscribe
class e_unsubscribe
{
function __construct()
@ -23,6 +23,7 @@ class unsubscribe
if(empty($_GET['id']))
{
$this->invalidURL();
return;
}
@ -135,7 +136,7 @@ class unsubscribe
}
new unsubscribe;
new e_unsubscribe;
@ -145,4 +146,3 @@ require_once(FOOTERF);
exit;
?>