1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8require_once('tiki-setup.php');
9if (isset($_REQUEST['msg'])) {
10	$smarty->assign('msg', $_REQUEST['msg']);
11}
12if (isset($_REQUEST['show_history_back_link'])) {
13	$smarty->assign('show_history_back_link', $_REQUEST['show_history_back_link']);
14}
15$smarty->assign('mid', 'tiki-information.tpl');
16$smarty->display("tiki.tpl");
17