Copy of http://www.kyuran.be/wiki/index.php?page=TaviPatches%2FWikiLogo
Macro WikiLogo allow you to change the top right logo of a Wiki page.
Look [1] for preview
To implement the WikiLogo macro for 'Tavi, you need to do the following:
It's done :)
<?
function view_wiki_logo($text)
{
global $PHP_AUTH_USER, $PHP_AUTH_PW, $WikiLogo;
if (substr($text,0,1) <> "/") {
$WikiLogo = "http://" . $text;
} else {
$WikiLogo = $text;
}
return "";
}
?>