Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions admin_options.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function callback_401()
//Displays the title input box for the custom 403 error page
function title_403()
{
$value = ( isset( $this->options['title_403'] ) && !empty( $this->options['title_403'] ) ) ? $this->options['title_403'] : $this->defaults['title_403'];
$value = ( isset( $this->options['title_403'] ) ) ? $this->options['title_403'] : $this->defaults['title_403'];
echo '<input id="title_403" type="text" name="jesin_' . $this->slug . '[title_403]" value="' . $value . '"/>';
}

Expand All @@ -86,7 +86,7 @@ function content_403()
//Displays the title input box for the custom 403 error page
function title_401()
{
$value = ( isset( $this->options['title_401'] ) && !empty( $this->options['title_401'] ) ) ? $this->options['title_401'] : $this->defaults['title_401'];
$value = ( isset( $this->options['title_401'] ) ) ? $this->options['title_401'] : $this->defaults['title_401'];
echo '<input id="title_401" type="text" name="jesin_' . $this->slug . '[title_401]" value="' . $value . '"/>';
}

Expand Down