X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;ds=sidebyside;f=defrequest.pl;fp=defrequest.pl;h=0000000000000000000000000000000000000000;hb=9ce5a8529e75cb109ed9ba3fc788c94ef47b1080;hp=c53f372efe587c8326b466605fff612c2a6acf39;hpb=03830799201db0b0f28e9c494fdd1b5b5143749c;p=ndwebbie.git diff --git a/defrequest.pl b/defrequest.pl deleted file mode 100644 index c53f372..0000000 --- a/defrequest.pl +++ /dev/null @@ -1,40 +0,0 @@ -#************************************************************************** -# Copyright (C) 2006 by Michael Andreen * -# * -# This program is free software; you can redistribute it and/or modify * -# it under the terms of the GNU General Public License as published by * -# the Free Software Foundation; either version 2 of the License, or * -# (at your option) any later version. * -# * -# This program is distributed in the hope that it will be useful, * -# but WITHOUT ANY WARRANTY; without even the implied warranty of * -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -# GNU General Public License for more details. * -# * -# You should have received a copy of the GNU General Public License * -# along with this program; if not, write to the * -# Free Software Foundation, Inc., * -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * -#**************************************************************************/ - -use strict; -use warnings FATAL => 'all'; - -$ND::TEMPLATE->param(TITLE => 'Request Defense'); - -our $BODY; -our $DBH; -my $error; - -die "You don't have access" unless isMember(); - -if (defined param('cmd') && param('cmd') eq 'submit'){ - my $insert = $DBH->prepare('INSERT INTO defense_requests (uid,message) VALUES (?,?)'); - if($insert->execute($ND::UID,param('message'))){ - $BODY->param(Reply => param('message')); - }else{ - $error .= "".$DBH->errstr.""; - } -} -$BODY->param(Error => $error); -1;