Skip to content

Commit

Permalink
fix for undefined array key htmlok
Browse files Browse the repository at this point in the history
  • Loading branch information
turnermm committed Jul 27, 2023
1 parent 92b05a7 commit 1cdd54a
Show file tree
Hide file tree
Showing 2 changed files with 1,034 additions and 1 deletion.
2 changes: 1 addition & 1 deletion action/meta.php
Expand Up @@ -916,7 +916,7 @@ function reset_user_rewrite_check() {
$conf['userewrite'] = 0;
}

if($conf['htmlok'] || $this->getConf('htmlblock_ok')) {
if((isset($conf['htmlok'])&& $conf['htmlok']) || $this->getConf('htmlblock_ok')) {
$JSINFO['htmlok'] = 1;
}
else $JSINFO['htmlok'] = 0;
Expand Down

0 comments on commit 1cdd54a

Please sign in to comment.