You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
591 B
29 lines
591 B
<?php
|
|
|
|
/**
|
|
*
|
|
* @package templates/default
|
|
*/
|
|
|
|
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
|
|
|
|
/* Variables */
|
|
/* @var $isOk bool */
|
|
/* @var $host string */
|
|
/* @var $fixedHost string */
|
|
?>
|
|
<p>
|
|
<b>Database host:</b>
|
|
<?php
|
|
if ($isOk) {
|
|
?><i class='green'>
|
|
<b>[<?php echo htmlentities($host); ?>]</b> is valid.
|
|
</i><?php
|
|
} else {
|
|
?><i class='red'>
|
|
<b>[<?php echo htmlentities($host); ?>]</b> is not a valid. Try using <b>[<?php echo htmlentities($fixedHost); ?>]</b> instead.
|
|
</i>
|
|
<?php
|
|
}
|
|
?>
|
|
</p>
|