Heres a minor bug with 1.61
When a blog is nominated and this is listed in the poll, the poll entry has a href link to the actual blog entry (like it does with threads/post) however the markup for it is incorrect so it points to:
http://"http//www.mysite.com/blog.php?b=29234
Probably a simple template issue but I can't find it
Also, it would be really good if there was a hook around the winner notification. This would be useful to do extra things like giving a Casino or Credits bonus to the users. I have hacked the cron file to do this but I hook is a better solution
EDIT: Found it I think:
The following line
Code:
$nominatedposttitle[$j] = "[URL=\"$site_URL/blog.php?$session[sessionurl]b=".$blog_id."]Blog: ".$blog_title."[/url]";
Does not need the \" part after URL=, it should be
Code:
$nominatedposttitle[$j] = "[URL=".$site_URL."/blog.php?$session[sessionurl]b=".$blog_id."]Blog: ".$blog_title."[/url]";