Update bottom.inc.php

avoid warning
This commit is contained in:
buckaroo-labs 2023-12-20 19:35:08 -08:00 committed by GitHub
parent 61f6cf4789
commit a31eec599c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,11 +5,13 @@ echo '<a href="'.createURL('about').'">'.T_('About').'</a>';
echo ' - ';
echo T_("Propulsed by ");
echo " <a href=\"https://sourceforge.net/projects/semanticscuttle/\">SemanticScuttle</a>";
//2023-12-20 add if block to avoid warning
if (isset($GLOBALS['enableWebsiteThumbnails'])) {
if($GLOBALS['enableWebsiteThumbnails']) {
// Licence to the thumbnails provider (OBLIGATORY IF YOU USE ARTVIPER SERVICE)
echo ' (Thumbnails by <a href="http://www.artviper.net">webdesign</a>)';
}
}
?>
</div>