ruạṛ
<?php /** * Redirect to the most commonly used page * @version 0.10 * @author Robert Urquhart <programmer@activatedesign.co.nz> * @package WEP-CMS */ session_start(); require_once $_SERVER['DOCUMENT_ROOT'].'/admin/scripts-includes/universal.php'; $location = 'pages.php'; if(ADMIN_INDEX_PAGE!='') { $location = ADMIN_INDEX_PAGE; } elseif(MODULE_CART) { $location = 'orders.php'; } elseif(MODULE_PRODUCTS) { $location = 'categories.php'; } header('Location: '.$location); ?>
cải xoăn