forked from science-ation/science-ation
Fix user methods like deleting accounts
This commit is contained in:
parent
51650c4f34
commit
1ced97807c
19
user.inc.php
19
user.inc.php
@ -217,9 +217,9 @@ function user_load($user, $uid = false)
|
|||||||
$q->execute();
|
$q->execute();
|
||||||
|
|
||||||
if ($q->rowCount() != 1) {
|
if ($q->rowCount() != 1) {
|
||||||
echo "Query [$query] returned " . $q->rowCount() . " rows\n";
|
/*echo "Query [$query] returned " . $q->rowCount() . " rows\n";
|
||||||
echo '<pre>';
|
echo '<pre>';
|
||||||
print_r(debug_backtrace());
|
print_r(debug_backtrace());*/
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -690,14 +690,14 @@ function user_purge($u, $type = false)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Duplicate a row in the users table, or any one of the users_* tables. */
|
/* Duplicate a row in the users table, or any one of the users_* tables. */
|
||||||
function user_dupe_row($db, $key, $val, $newval)
|
function user_dupe_row($table, $key, $val, $newval)
|
||||||
{
|
{
|
||||||
global $config, $pdo;
|
global $config, $pdo;
|
||||||
$nullfields = array('deleteddatetime'); /* Fields that can be null */
|
$nullfields = array('id','sex','deleteddatetime'); /* Fields that can be null */
|
||||||
$q = $pdo->prepare("SELECT * FROM $db WHERE $key='$val'");
|
$q = $pdo->prepare("SELECT * FROM $table WHERE $key='$val'");
|
||||||
$q->execute();
|
$q->execute();
|
||||||
if ($q->rowCount() != 1) {
|
if ($q->rowCount() != 1) {
|
||||||
echo "ERROR duplicating row in $db: $key=$val NOT FOUND.\n";
|
echo "ERROR duplicating row in $table: $key=$val NOT FOUND.\n";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
$i = $q->fetch(PDO::FETCH_ASSOC);
|
$i = $q->fetch(PDO::FETCH_ASSOC);
|
||||||
@ -715,12 +715,12 @@ function user_dupe_row($db, $key, $val, $newval)
|
|||||||
$keys = '`' . join('`,`', array_keys($i)) . '`';
|
$keys = '`' . join('`,`', array_keys($i)) . '`';
|
||||||
$vals = join(',', array_values($i));
|
$vals = join(',', array_values($i));
|
||||||
|
|
||||||
$q = "INSERT INTO $db ($keys) VALUES ($vals)";
|
$q = "INSERT INTO $table ($keys) VALUES ($vals)";
|
||||||
$r = $pdo->prepare($q);
|
$r = $pdo->prepare($q);
|
||||||
$r->execute();
|
$r->execute();
|
||||||
show_pdo_errors_if_any($pdo);
|
show_pdo_errors_if_any($pdo);
|
||||||
|
|
||||||
$id = $pdo->errorInfo();
|
$id = $pdo->lastInsertId();
|
||||||
return $id;
|
return $id;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -748,13 +748,14 @@ function user_dupe($u, $new_year)
|
|||||||
echo "Cannot duplicate user ID {$u['id']}, they are deleted. Undelete them first.\n";
|
echo "Cannot duplicate user ID {$u['id']}, they are deleted. Undelete them first.\n";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
print ($r->year);
|
|
||||||
if ($r->year == $new_year) {
|
if ($r->year == $new_year) {
|
||||||
echo "Cannot duplicate user ID {$u['id']}, they already exist in year $new_year\n";
|
echo "Cannot duplicate user ID {$u['id']}, they already exist in year $new_year\n";
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
$id = user_dupe_row('users', 'id', $u['id'], NULL);
|
$id = user_dupe_row('users', 'id', $u['id'], NULL);
|
||||||
|
|
||||||
$q = $pdo->prepare("UPDATE users SET year = $new_year WHERE id = $id");
|
$q = $pdo->prepare("UPDATE users SET year = $new_year WHERE id = $id");
|
||||||
$q->execute();
|
$q->execute();
|
||||||
/* Load the new user */
|
/* Load the new user */
|
||||||
|
@ -68,7 +68,7 @@ switch (get_value_from_array($_GET, 'action')) {
|
|||||||
// okay here we go, lets get rid of them completely, since this is what theyve asked for
|
// okay here we go, lets get rid of them completely, since this is what theyve asked for
|
||||||
message_push(happy(i18n('Account successfully deleted. Goodbye')));
|
message_push(happy(i18n('Account successfully deleted. Goodbye')));
|
||||||
user_delete($u);
|
user_delete($u);
|
||||||
if ($_SESSION['embed'] == true)
|
if (get_value_from_array($_SESSION, 'embed') == true)
|
||||||
display_messages();
|
display_messages();
|
||||||
else
|
else
|
||||||
header('location: user_login.php?action=logout');
|
header('location: user_login.php?action=logout');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user