Файл: foto/index.php
Строк: 16
<?
require_once ("../core/cuctema/core.php");
only_reg();
if(!user_access('foto_komm_del'))$skp=" AND `sk` = '0'";else $skp=NULL;
if(!user_access('foto_foto_edit'))$skf=" AND `sk` = '0'";else $skf=NULL;
if (isset($_GET['acth']) && $_GET['acth']=='show_foto' && isset($_GET['id_gallery']) && isset($_GET['id_foto']))
{
include_once 'inc/user_show_foto.php';
}
if (isset($_GET['acth']) && $_GET['acth']=='user_gallery' && isset($_GET['id_gallery']))
{
include_once 'inc/user_gallery_show.php';
}
elseif(isset($_GET['acth']) && $_GET['acth']=='user_gallery')
{
include_once 'inc/user_gallery.php';
}
else
{
include_once 'inc/all_gallery.php';
}
require_once ("../core/cuctema/foot.php");
?>