forked from science-ation/science-ation
- update the user_load routine to use the new method.
This commit is contained in:
parent
c41be1a17e
commit
4789bd4d60
23
user.inc.php
23
user.inc.php
@ -109,17 +109,8 @@ function user_load_volunteer(&$u)
|
|||||||
|
|
||||||
function user_load_sponsor($u)
|
function user_load_sponsor($u)
|
||||||
{
|
{
|
||||||
/* Double check, make sure the user is of this type */
|
$u['sponsors_id'] = intval($u['sponsors_id']);
|
||||||
if(!in_array('sponsor', $u['types'])) return false;
|
return true;
|
||||||
|
|
||||||
$q = mysql_query("SELECT * FROM users_sponsor
|
|
||||||
WHERE users_id='{$u['id']}'");
|
|
||||||
if(mysql_num_rows($q)!=1) return false;
|
|
||||||
|
|
||||||
$r = mysql_fetch_object($q);
|
|
||||||
$ret = array();
|
|
||||||
$ret['sponsors_id'] = $r->sponsors_id;
|
|
||||||
return $ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function user_load($user)
|
function user_load($user)
|
||||||
@ -155,7 +146,7 @@ function user_load($user)
|
|||||||
foreach($ret['types'] as $t) {
|
foreach($ret['types'] as $t) {
|
||||||
/* These all pass $ret by reference, and can modify
|
/* These all pass $ret by reference, and can modify
|
||||||
* $ret */
|
* $ret */
|
||||||
$r = call_user_func("user_load_$t", $ret);
|
$r = call_user_func("user_load_$t", &$ret);
|
||||||
if($r != true) {
|
if($r != true) {
|
||||||
echo "user_load_$t returned false!\n";
|
echo "user_load_$t returned false!\n";
|
||||||
return false;
|
return false;
|
||||||
@ -178,10 +169,10 @@ function user_load($user)
|
|||||||
$orig = $ret;
|
$orig = $ret;
|
||||||
$ret['orig'] = $orig;
|
$ret['orig'] = $orig;
|
||||||
|
|
||||||
// echo "<pre>User load returning: \n";
|
/* echo "<pre>User load returning: \n";
|
||||||
// print_r($ret);
|
print_r($ret);
|
||||||
// echo "</pre>";
|
echo "</pre>";
|
||||||
|
*/
|
||||||
|
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user