thanks, but I could achieve exactly the same thing editing
forumhome_forumbit_level2_post template. But plugin thing saved my edit
I'm getting xhtml validation errors with onerror attribute. And the img tag still exists for all forums where logo files are missing. How do I stop injecting img tag on forums that does not have logo file?
Thanks
--------------- Added [DATE]1227379492[/DATE] at [TIME]1227379492[/TIME] ---------------
alright, I checked for existence of file this way.
PHP Code:
$filename = 'images/forumlogos/'. $forum[forumid].'.gif';
if (file_exists($filename)) {
$forum['title'] = '<img src="images/forumlogos/'.$forum['forumid'].'.gif" /> '.$forum['title'];
}
Thanks