ILIAS  Release_4_4_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
error.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
4 require_once("Services/Init/classes/class.ilInitialisation.php");
6 
7 $tpl->addBlockFile("CONTENT", "content", "tpl.error.html");
8 
9 $tpl->setCurrentBlock("content");
10 $tpl->setVariable("ERROR_MESSAGE",($_SESSION["failure"]));
11 $tpl->setVariable("SRC_IMAGE", ilUtil::getImagePath("mess_failure.png"));
12 $tpl->parseCurrentBlock();
13 
14 ilSession::clear("referer");
15 ilSession::clear("message");
16 $tpl->show();
17 ?>