17 lines
484 B
PHP
17 lines
484 B
PHP
<?if(!check_bitrix_sessid()) return;?>
|
|
<?
|
|
if($ex = $APPLICATION->GetException())
|
|
CAdminMessage::ShowMessage(Array(
|
|
"TYPE" => "ERROR",
|
|
"MESSAGE" => GetMessage("MOD_INST_ERR"),
|
|
"DETAILS" => $ex->GetString(),
|
|
"HTML" => true,
|
|
));
|
|
else
|
|
CAdminMessage::ShowNote(GetMessage("MOD_INST_OK"));
|
|
?>
|
|
<form action="<?echo $APPLICATION->GetCurPage()?>">
|
|
<input type="hidden" name="lang" value="<?echo LANG?>">
|
|
<input type="submit" name="" value="<?echo GetMessage("MOD_BACK")?>">
|
|
<form>
|