Update bottom.inc.php
avoid warning
This commit is contained in:
parent
61f6cf4789
commit
a31eec599c
1 changed files with 3 additions and 1 deletions
|
@ -5,11 +5,13 @@ echo '<a href="'.createURL('about').'">'.T_('About').'</a>';
|
||||||
echo ' - ';
|
echo ' - ';
|
||||||
echo T_("Propulsed by ");
|
echo T_("Propulsed by ");
|
||||||
echo " <a href=\"https://sourceforge.net/projects/semanticscuttle/\">SemanticScuttle</a>";
|
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']) {
|
if($GLOBALS['enableWebsiteThumbnails']) {
|
||||||
// Licence to the thumbnails provider (OBLIGATORY IF YOU USE ARTVIPER SERVICE)
|
// Licence to the thumbnails provider (OBLIGATORY IF YOU USE ARTVIPER SERVICE)
|
||||||
echo ' (Thumbnails by <a href="http://www.artviper.net">webdesign</a>)';
|
echo ' (Thumbnails by <a href="http://www.artviper.net">webdesign</a>)';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue