Skip to content

Commit

Permalink
auto fill url field on connection error
Browse files Browse the repository at this point in the history
  • Loading branch information
PhoenixPeca authored May 14, 2018
1 parent b68e819 commit ae42e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/php/index.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
<div class="form-row">
<label>
<span>Enter full URL:</span>
<input type="text" name="<?php echo htmlspecialchars($GLOBALS['_config']['url_var_name']) ?>" value="<?php echo isset($GLOBALS['_url']) ? htmlspecialchars($GLOBALS['_url']) : (isset($_GET['__iv']) ? htmlspecialchars($_GET['__iv']) : ''); ?>" placeholder="https://www.phoenixpeca.xyz/" required="required"/>
<input type="text" name="<?php echo htmlspecialchars($GLOBALS['_config']['url_var_name']) ?>" value="<?php echo isset($_GET[$GLOBALS['_config']['url_var_name']]) ? htmlspecialchars($_GET[$GLOBALS['_config']['url_var_name']]) : (isset($_GET['__iv']) ? htmlspecialchars($_GET['__iv']) : ''); ?>" placeholder="https://www.phoenixpeca.xyz/" required="required"/>
</label>
</div>
<div class="form-row">
Expand Down

0 comments on commit ae42e59

Please sign in to comment.