<?php
// Load-bearing variable if statements for languages - PHP 8
// Reference: https://efiction.org/community/support/php-notice-undefined-variable-in-languages-en-php/
if(!isset($allowed_tags)){
$allowed_tags = 'Variable allowed_tags is not set';
}
if(!isset($recentdays)){
$recentdays = 'Varaible recentdays is not set';
}
if(!isset($sitename)){
$sitename = 'Variable sitename is not set';
}
if(!isset($url)){
$url = 'Varaible url is not set';
}
if(!isset($multiplecats)){
$multiplecats = 'Variable multiplecats is not set';
}
if(!isset($minwords)){
$minwords = 'Varaible minwords is not set';
}
if(!isset($maxwords)){
$maxwords = 'Variable maxwords is not set';
}
if(!isset($action)){
$action = 'Varaible action is not set';
}
if(!isset($pwdsetting)){
$pwdsetting = 'Variable pwdsetting is not set';
}
if(!isset($imagewidth)){
$imagewidth = 'Varaible imagewidth is not set';
}
if(!isset($imageheight)){
$imageheight = 'Varaible imageheight is not set';
}
?>