1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Header location cleanup. From now, please use e107::redirect(); to redirect to the home page, or e107::redirect('admin'); to redirect to the admin start page or e107::redirect($url);

This commit is contained in:
Cameron
2016-01-13 19:17:37 -08:00
parent d51b3013f3
commit 796f5fa95c
107 changed files with 179 additions and 152 deletions

View File

@@ -26,7 +26,7 @@ Notes:
require_once("../../class2.php");
if(!getperms("P") || !e107::isInstalled('rss_menu'))
{
header("location:".e_BASE."index.php");
e107::redirect('admin');
exit;
}

View File

@@ -26,9 +26,9 @@ if (!defined('e107_INIT'))
$e107 = e107::getInstance();
if (!$e107->isInstalled('rss_menu'))
if (!e107::isInstalled('rss_menu'))
{
header('Location: '.e_BASE.'index.php');
e107::redirect();
exit;
}