`{?_MYSQL_PREFIX?}_user_points`
WHERE
`userid`=%s AND
- `locked_points` != 0.00000
+ `locked_points` > 0.00000
ORDER BY
`ref_depth` ASC",
array(bigintval($content['userid'])), __FILE__, __LINE__);
`locked_points`=0.00000
WHERE
`userid`=%s AND
- `ref_depth`=%d
+ `ref_depth`=%s
LIMIT 1",
array(
$content['locked_points'],
// Load header template
loadTemplate('member_welcome_header', false, $content);
-// Chedk if he is returning from a profile update notification
-$result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `notified`='Y' AND `userid`=%s LIMIT 1",
- array(getMemberId()), __FILE__, __LINE__);
-
-if ((SQL_NUMROWS($result) == 1) && (isExtensionActive('profile'))) {
+// Check if he is returning from a profile update notification
+if ((getUserData('notified') == 'Y') && (isExtensionActive('profile'))) {
// Yes, he is so let's place him his wanted buttons
loadTemplate('member_profile_outdated');
} else {
loadTemplate('member_welcome');
}
-// Free memory
-SQL_FREERESULT($result);
-
// Load footer template
loadTemplate('member_welcome_footer');