Quote:
Originally Posted by Hoffi
If you change two Files, you have it everywhere.
Just change (for 3.7Beta3)
File: functions_bigthree.php
Line106
PHP Code:
$user['buddymark'] = '+';
The + in anything you want. Like:
PHP Code:
$user['buddymark'] = '<img src="/images/statusicon/buddy.gif" alt="User is on your buddy list">';
And the secon is the File class_profileblock.php
Line 1056
Change
PHP Code:
$user['buddymark'] = in_array($user['userid'], $buddylist) ? '+' : '';
in
PHP Code:
$user['buddymark'] = in_array($user['userid'], $buddylist) ? '<img src="/images/statusicon/buddy.gif" alt="User is on your buddy list">' : '';
Then you need no Template-Mod and the Sign shoul be on every Page.
|
That's easier, thanks Hoffi