Fixing problems caused with conf.json

Adding to upcoming autofix feature
This commit is contained in:
Michał Gdula 2022-11-01 17:34:24 +00:00
parent 37e1db5b7b
commit 05533395eb
4 changed files with 66 additions and 39 deletions

View file

@ -96,7 +96,9 @@
}
// Random welcome message
echo "<p>".$user_welcome[array_rand($user_welcome, 1)]."</p>";
if (isset($user_welcome)) {
echo "<p>".$user_welcome[array_rand($user_welcome, 1)]."</p>";
}
?>
</div>
<?php