2020-12-26 01:42:23 +08:00
<? php
2021-01-13 19:32:26 +08:00
require_once ( "../include/bittorrent.php" );
2020-12-26 01:42:23 +08:00
function bark ( $msg ) {
stdhead ();
stdmsg ( "Update Has Failed !" , $msg );
stdfoot ();
exit ;
}
dbconn ();
loggedinorreturn ();
if ( isset ( $_POST [ "nowarned" ]) && ( $_POST [ "nowarned" ] == "nowarned" )){
//if (get_user_class() >= UC_SYSOP) {
if ( get_user_class () < UC_MODERATOR )
stderr ( "Sorry" , "Access denied." );
{
if ( empty ( $_POST [ "usernw" ]) && empty ( $_POST [ "desact" ]) && empty ( $_POST [ "delete" ]))
bark ( "You Must Select A User To Edit." );
if ( ! empty ( $_POST [ "usernw" ]))
{
2022-12-08 20:43:33 +08:00
//$msg = sqlesc("Your Warning Has Been Removed By: " . $CURUSER['username'] . ".");
//$added = sqlesc(date("Y-m-d H:i:s"));
//$userid = implode(", ", $_POST['usernw']);
////sql_query("INSERT INTO messages (sender, receiver, msg, added) VALUES (0, $userid, $msg, $added)") or sqlerr(__FILE__, __LINE__);
//
//$r = sql_query("SELECT modcomment FROM users WHERE id IN (" . implode(", ", $_POST['usernw']) . ")")or sqlerr(__FILE__, __LINE__);
//$user = mysql_fetch_array($r);
//$exmodcomment = $user["modcomment"];
//$modcomment = date("Y-m-d") . " - Warning Removed By " . $CURUSER['username'] . ".\n". $modcomment . $exmodcomment;
//sql_query("UPDATE users SET modcomment=" . sqlesc($modcomment) . " WHERE id IN (" . implode(", ", $_POST['usernw']) . ")") or sqlerr(__FILE__, __LINE__);
//
//$do="UPDATE users SET warned='no', warneduntil=null WHERE id IN (" . implode(", ", $_POST['usernw']) . ")";
//$res=sql_query($do);
2020-12-26 01:42:23 +08:00
2022-12-08 20:43:33 +08:00
$modcomment = date ( "Y-m-d" ) . " - Warning Removed By " . $CURUSER [ 'username' ];
\App\Models\User :: query () -> whereIn ( 'id' , $_POST [ 'usernw' ])
-> update ([
'warned' => 'no' ,
'warneduntil' => null ,
'modcomment' => \Nexus\Database\NexusDB :: raw ( "if(modcomment = '', ' $modcomment ', concat_ws(' \n ', ' $modcomment ', modcomment))" )
]);
}
2020-12-26 01:42:23 +08:00
if ( ! empty ( $_POST [ "desact" ])){
2022-12-08 20:43:33 +08:00
//$do="UPDATE users SET enabled='no' WHERE id IN (" . implode(", ", $_POST['desact']) . ")";
//$res=sql_query($do);
\App\Models\User :: query () -> whereIn ( 'id' , $_POST [ 'desact' ]) -> update ([ 'enabled' => 'no' ]);
}
2020-12-26 01:42:23 +08:00
}
}
header ( "Refresh: 0; url=warned.php" );
?>