Quote:
Originally Posted by utlamer
yeah i know, my forum is small so it's cool
any chance of looking into why this doesnt work for some
i notice you are running 3.0.1 on ur site
maybe something has changed since then?
|
Yes, we haven't upgraded yet, and probably will wait for a major release before we upgrade.
If you're willing to test this, I think it may work
Use this code in functions.php
PHP Code:
// ###################### thankyou #######################
function thankyou(){
global $DB_site;
$thanksbit = ' <a href=\"member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';
$latestcontributers = $DB_site->query("SELECT username, status,regdate, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5");
$latest_str = '';
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval("\$latest_str .= ', ' . \"$thanksbit\";");
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}
Instead of the code in the first post. It uses a hard-coded template instead of the thanksbit, to avoid dealing with fetch template.