View file pages/index.php

File size: 1.44Kb
<?php
#-----------------------------------------------------#
#          ********* ROTORCMS *********               #
#              Made by  :  VANTUZ                     #
#               E-mail  :  [email protected]         #
#                 Site  :  http://pizdec.ru           #
#             WAP-Site  :  http://visavi.net          #
#                  ICQ  :  36-44-66                   #
#  Вы не имеете право вносить изменения в код скрипта #
#        для его дальнейшего распространения          #
#-----------------------------------------------------#
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/header.php');

if (!empty($_GET['act'])){
  
	$act = check($_GET['act']);
	
	if (preg_match('|^[a-z0-9_\-]+$|i', $act) && $act!='index'){

		if (file_exists(DATADIR.'main/'.$act.'.dat') && (is_user() || $act!='menu')){
	  
			include (DATADIR.'main/'.$act.'.dat');

		} else {
			$_SESSION['note'] = 'Ошибка! Данной страницы не существует!';
			redirect("index.php?".SID);
		}
	} else {
		$_SESSION['note'] = 'Ошибка! Недопустимое название страницы!';
		redirect("index.php?".SID);
	}
} else {
	include_once (DATADIR.'main/pages.dat');
}

include_once ('../themes/footer.php');
?>