From 1c149769fe491aff828a0f7d9a547e769a959431 Mon Sep 17 00:00:00 2001 From: Git Date: Wed, 7 Sep 2011 08:00:11 +0000 Subject: [PATCH] 97 changes from Sun Aug 21 14:42:15 2011 -0400 to Tue Sep 6 22:21:05 2011 +0000 don't delete conversations on request unfill faster query for unfilling requests Have better.php rely on get_group's cache management Fix collector for multi-artist albums Sanitize tags in top10 filter Sanitize query Fixes a bug showing the Disable Avatars box for users with the "Can disable users' posting rights" permission Revert "#trying to fix mono" fix unknown release (try 1) trying to roll this out with dirty cache support Go back to memcached's internal incr/decr functions fixed nextElementSibling() patappatch g [patapper] --- sections/requests/takeunfill.php | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/sections/requests/takeunfill.php b/sections/requests/takeunfill.php index 26b2c122..2a7a4d80 100644 --- a/sections/requests/takeunfill.php +++ b/sections/requests/takeunfill.php @@ -57,27 +57,6 @@ send_pm($UserID, 0, db_string("A request you created has been unfilled"), db_string("The request '[url=http://".NONSSL_SITE_URL."/requests.php?action=view&id=".$RequestID."]".$FullName."[/url]' was unfilled by [url=http://".NONSSL_SITE_URL."/user.php?id=".$LoggedUser['ID']."]".$LoggedUser['Username']."[/url] for the reason: ".$_POST['reason'])); } -$DB->query("SELECT UserID FROM requests_votes WHERE RequestID = ".$RequestID); -$VoterIDs = implode(',',$DB->collect('UserID')); - -$DB->query("SELECT ID, UserID - FROM pm_conversations AS pc - JOIN pm_conversations_users AS pu ON pu.ConvID=pc.ID AND pu.UserID!=0 - WHERE Subject='".db_string("The request '{$FullName}' has been filled")."' - AND pu.UserID IN ($VoterIDs)"); - -$ConvIDs = implode(',',$DB->collect('ID')); -$UserIDs = $DB->collect('UserID'); - -if($ConvIDs){ - $DB->query("DELETE FROM pm_conversations WHERE ID IN($ConvIDs)"); - $DB->query("DELETE FROM pm_conversations_users WHERE ConvID IN($ConvIDs)"); - $DB->query("DELETE FROM pm_messages WHERE ConvID IN($ConvIDs)"); -} -foreach($UserIDs as $UserID) { - $Cache->delete_value('inbox_new_'.$UserID); -} - write_log("Request $RequestID ($FullName), with a ".get_size($RequestVotes['TotalBounty'])." bounty, was un-filled by user ".$LoggedUser['ID']." (".$LoggedUser['Username'].") for the reason: ".$_POST['reason']); $Cache->delete_value('request_'.$RequestID);