Initial commit
This commit is contained in:
49
lotgd-web/lotgd/lib/saveuser.php
Executable file
49
lotgd-web/lotgd/lib/saveuser.php
Executable file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
// translator ready
|
||||
// addnews ready
|
||||
// mail ready
|
||||
|
||||
function saveuser(){
|
||||
global $session,$dbqueriesthishit,$baseaccount,$companions;
|
||||
if (defined("NO_SAVE_USER")) return false;
|
||||
|
||||
if ($session['loggedin'] && $session['user']['acctid']!=""){
|
||||
// Any time we go to save a user, make SURE that any tempstat changes
|
||||
// are undone.
|
||||
restore_buff_fields();
|
||||
|
||||
$session['user']['allowednavs']=serialize($session['allowednavs']);
|
||||
$session['user']['bufflist']=serialize($session['bufflist']);
|
||||
if (isset($companions) && is_array($companions)) $session['user']['companions']=serialize($companions);
|
||||
$sql="";
|
||||
reset($session['user']);
|
||||
while(list($key,$val)=each($session['user'])){
|
||||
if (is_array($val)) $val = serialize($val);
|
||||
//only update columns that have changed.
|
||||
if ($baseaccount[$key]!=$val){
|
||||
$sql.="$key='".addslashes($val)."', ";
|
||||
}
|
||||
}
|
||||
//due to the change in the accounts table -> moved output -> save everyhit
|
||||
$sql.="laston='".date("Y-m-d H:i:s")."', ";
|
||||
$sql = substr($sql,0,strlen($sql)-2);
|
||||
$sql="UPDATE " . db_prefix("accounts") . " SET " . $sql .
|
||||
" WHERE acctid = ".$session['user']['acctid'];
|
||||
db_query($sql);
|
||||
if (isset($session['output']) && $session['output']) {
|
||||
$sql_output="UPDATE " . db_prefix("accounts_output") . " SET output='".addslashes($session['output'])."' WHERE acctid={$session['user']['acctid']};";
|
||||
$result=db_query($sql_output);
|
||||
if (db_affected_rows($result)<1) {
|
||||
$sql_output="REPLACE INTO " . db_prefix("accounts_output") . " VALUES ({$session['user']['acctid']},'".addslashes($session['output'])."');";
|
||||
db_query($sql_output);
|
||||
}
|
||||
}
|
||||
unset($session['bufflist']);
|
||||
$session['user'] = array(
|
||||
"acctid"=>$session['user']['acctid'],
|
||||
"login"=>$session['user']['login'],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user