GroupCalendar\guild\include\calendar_functions.php (Line 414 to 418)
replace
- Code: Select all
$icon_value = '<img src="'.$roster->config['img_url'].'note.gif" style="cursor:help;" class="membersRowimg" alt="'.$roster->locale->act['note'].'" '.makeOverlib(stripslashes($note),$roster->locale->act['note'],'',1).'>';
}
else
{
$icon_value = '<img src="'.$roster->config['img_url'].'no_note.gif" class="membersRowimg" alt="'.$roster->locale->act['note'].'">';
with
- Code: Select all
$icon_value = '<img src="'.$roster->config['theme_path'] . '\images/note.gif" style="cursor:help;" class="membersRowimg" alt="'.$roster->locale->act['note'].'" '.makeOverlib(stripslashes($note),$roster->locale->act['note'],'',1).'>';
}
else
{
$icon_value = '<img src="'.$roster->config['theme_path'] . '\images/no_note.gif" class="membersRowimg" alt="'.$roster->locale->act['note'].'">';