function advuser_profile_value($fid, $uid) {
$ret = db_result(db_query("SELECT value FROM {profile_values} WHERE fid = %d and uid = %d", $fid, $uid));
if ($ret === FALSE) {
$ret = NULL;
}
return $ret;
}
This function I noticed that isn't never used inner the code.
So is a code not useful for the module?
Comments
Comment #1
Anonymous (not verified) commentedI'm closing this because it is old and I'm revamping code in 6.x-3.x. 5.x versions are in bug fix only mode and even that may be iffy.