Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/currency/install/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/currency/install/unstep2.php

<?php
/** @global CDatabase $DB */
/** @global CUser $USER */
/** @global CMain $APPLICATION */
if (!check_bitrix_sessid())
{
	return;
}

global $errors;

if (empty($errors))
{
	CAdminMessage::ShowNote(GetMessage('MOD_UNINST_OK'));
}
else
{
	CAdminMessage::ShowMessage([
		'TYPE' => 'ERROR',
		'MESSAGE' => GetMessage('MOD_UNINST_ERR'),
		'DETAILS' => implode('<br>', $errors),
		'HTML' => true,
	]);
}
$ex = $APPLICATION->GetException();
if ($ex)
{
	CAdminMessage::ShowMessage([
		'TYPE' => 'ERROR',
		'MESSAGE' => GetMessage('MOD_UNINST_ERR'),
		'HTML' => true,
		'DETAILS' => $ex->GetString(),
	]);
}
?><form action="<?= $APPLICATION->GetCurPage() ?>">
<p>
	<input type="hidden" name="lang" value="<?= LANGUAGE_ID ?>">
	<input type="submit" name="" value="<?= htmlspecialcharsbx(GetMessage('MOD_BACK')) ?>">
</p>
<form>