Skip to content

Commit a57ec51

Browse files
authoredOct 14, 2017
Update MySQL.pm
1 parent 3d08255 commit a57ec51

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
 

‎Drivers/MySQL.pm

+10-8
Original file line numberDiff line numberDiff line change
@@ -258,14 +258,16 @@ method updateWalkingPuffle($blnWalking, $intPuffle, $intOwner) {
258258
$resQuery->execute($blnWalking, $intPuffle, $intOwner);
259259
}
260260

261-
method checkJoinedIglooContest($intID) {
262-
my $resQuery = $self->{connection}->prepare("SELECT * FROM igloo_contest WHERE `ID` = ?");
263-
$resQuery->execute($intID);
264-
my $arrResult = $resQuery->fetchall_arrayref({});
265-
if ($arrResult) {
266-
return $arrResult;
267-
}
268-
}
261+
# // ADD FOR IGLOO PARTYS - REMOVE THE HASHTAGS
262+
263+
# method checkJoinedIglooContest($intID) {
264+
# my $resQuery = $self->{connection}->prepare("SELECT * FROM igloo_contest WHERE `ID` = ?");
265+
# $resQuery->execute($intID);
266+
# my $arrResult = $resQuery->fetchall_arrayref({});
267+
# if ($arrResult) {
268+
# return $arrResult;
269+
# }
270+
# }
269271

270272
method getLastDonations($intID) {
271273
my $resQuery = $self->{connection}->prepare("SELECT * FROM donations WHERE `ID` = ?");

0 commit comments

Comments
 (0)
Please sign in to comment.