From: Michael Andreen Date: Fri, 5 Jan 2007 09:33:10 +0000 (+0000) Subject: forgot to add ND::Include X-Git-Url: https://ruin.nu/git/?a=commitdiff_plain;h=bbe1fae6b0307a9f77b2b5e7b8a71ebaa137f846;p=ndwebbie.git forgot to add ND::Include --- diff --git a/ND/Include.pm b/ND/Include.pm new file mode 100644 index 0000000..8aa2bd4 --- /dev/null +++ b/ND/Include.pm @@ -0,0 +1,47 @@ +#************************************************************************** +# 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. * +#**************************************************************************/ + +package ND::Include; +use strict; +use warnings FATAL => 'all'; +use CGI qw{:standard}; +require Exporter; + +our @ISA = qw/Exporter/; + +our @EXPORT = qw/min max log_message/; + +sub min { + my ($x,$y) = @_; + return ($x > $y ? $y : $x); +} + +sub max { + my ($x,$y) = @_; + return ($x < $y ? $y : $x); +} + +sub log_message { + my ($uid, $message) = @_; + my $log = $ND::DBH->prepare_cached(q{INSERT INTO forum_posts (ftid,uid,message) VALUES( + (SELECT ftid FROM forum_threads WHERE log_uid = $1),$1,$2)}); + $log->execute($uid,$message); +} + +1;