17 lines
339 B
PHP
17 lines
339 B
PHP
<?php
|
|
use \Bitrix\Main\Localization\Loc;
|
|
|
|
if (!check_bitrix_sessid())
|
|
{
|
|
return;
|
|
}
|
|
|
|
CAdminMessage::ShowNote(Loc::getMessage('MOD_UNINST_OK'));
|
|
?>
|
|
|
|
<br>
|
|
<form action="<?= $APPLICATION->GetCurPage();?>">
|
|
<input type="hidden" name="lang" value="<?= LANG;?>">
|
|
<input type="submit" name="" value="<?= Loc::getMessage('MOD_BACK');?>">
|
|
</form>
|