hmmmm.... ok i gave it a try. i changed the code:
- Code: Select all
if($roster_conf['show_signature'])
print "<img onmouseover=\"return overlib('To access this signature use: ".$roster_conf['roster_dir']."/addons/siggen/sig.php?name=".urlencode(utf8_decode($name))."',CAPTION,'Signature Access',RIGHT);\" onmouseout=\"return nd();\" ".
"src=\"".getlink($module_name.'&file=addon&roster_addon_name=siggen&mode=signature&member='.urlencode(utf8_decode($name)).'&saveonly=0')."\" alt=\"Signature Image for $name\" /> \n";
to:
- Code: Select all
if($roster_conf['show_signature'])
print "<img onmouseover=\"return overlib('To access this signature use: ".$roster_conf['roster_dir']."/addons/siggen/sig.php?name=".urlencode(utf8_decode($name))."',CAPTION,'Signature Access',RIGHT);\" onmouseout=\"return nd();\" ".
"src=\"".getlink($module_name.'&file=char&sig-'.urlencode(utf8_decode($name)).'.png')."\" alt=\"Signature Image for $name\" /> \n";
But all i get is:
- Code: Select all
Signature Image for Zoddac
And i'm aware of that it is the "alt" text for the img. and when i checked the props i found that it was trying to access:
- Code: Select all
http://covenant.kieeps.com/WoWRosterDF/char/sig-Zoddac.png.html
and frankly... i have NO idea where the .html part comes from :O what am i doing wrong?