X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=motd.pl;fp=motd.pl;h=0000000000000000000000000000000000000000;hb=9ce5a8529e75cb109ed9ba3fc788c94ef47b1080;hp=b324cc013c3592ed966f8cd4b29fee61930c099c;hpb=03830799201db0b0f28e9c494fdd1b5b5143749c;p=ndwebbie.git diff --git a/motd.pl b/motd.pl deleted file mode 100644 index b324cc0..0000000 --- a/motd.pl +++ /dev/null @@ -1,44 +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'; -use ND::Include; - -$ND::TEMPLATE->param(TITLE => 'Edit MOTD'); - -our $BODY; -our $DBH; - -die "You don't have access" unless isHC(); - -if (defined param 'cmd' and param('cmd') eq 'change'){ - $DBH->begin_work; - my $query = $DBH->prepare(q{UPDATE misc SET value= ? WHERE id='MOTD'}); - my $motd = escapeHTML(param('motd')); - $query->execute($motd); - log_message $ND::UID,"Updated MOTD"; - $DBH->commit; - $BODY->param(MOTD => $motd); -}else{ - my ($motd) = $DBH->selectrow_array(q{SELECT value FROM misc WHERE id='MOTD'}); - $BODY->param(MOTD => $motd); -} - -1;