Intex - If you'll look for this line of code:
PHP Code:
$pollquery = "WHERE forumid='$pollsforum' AND thread.pollid!='0' ORDER BY poll.pollid DESC LIMIT 1";
And change it to:
PHP Code:
$pollquery = "WHERE forumid='$pollsforum' AND thread.pollid!='0' ORDER BY thread.sticky DESC, poll.pollid DESC LIMIT 1";
That should work, but if you have any problems let me know.
Heffe2000 - Um... You'll have to be a little more specific. How exactly is the "picture of the day" determined? Where would it come from?
RS25com - If you'll look for this bit of code:
PHP Code:
ORDER BY thread.threadid DESC $newsmax");
And change it to:
PHP Code:
ORDER BY thread.sticky DESC, thread.threadid DESC $newsmax");
That should do the trick.