<?php
// $Header: /cvsroot/twlite/lite/tiki-admin_banners.php,v 1.1.1.1 2004/08/06 13:02:54 damian Exp $
// Copyright (c) 2002-2004, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
// Initialization
require_once ('tiki-setup.php');
/*
if($user != 'admin') {
if($tiki_p_admin != 'y') {
$smarty->assign('msg',tra("You dont have permission to use this feature"));
$smarty->display("error.tpl");
die;
}
}
*/
// Display the template
$smarty->assign('mid', 'tiki-edit_banner.tpl');
$smarty->display("tiki.tpl");
?>