X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=motd.pl;fp=motd.pl;h=f69a54a4f1da894581db34285a839f6717d2d7c8;hb=6fec5ae1e0a9f7c4bb1964563392f06c8f2a7bb4;hp=0000000000000000000000000000000000000000;hpb=c9e39420232b0014b54b6b577a0523282d8c3b5a;p=ndwebbie.git diff --git a/motd.pl b/motd.pl new file mode 100644 index 0000000..f69a54a --- /dev/null +++ b/motd.pl @@ -0,0 +1,43 @@ +#************************************************************************** +# 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; + +$ND::TEMPLATE->param(TITLE => 'Edit MOTD'); + +our $BODY; +our $DBH; +our $LOG; + +die "You don't have access" unless isHC(); + +if (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->execute($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;