X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/c881a1fb9628d1325ec3bd9238578a6e918b476f..8fc396c5b6c1d6d0f5fad1425a6cf97ac2fc0342:/selfforum-cgi/user/fo_voting.pl?ds=sidebyside diff --git a/selfforum-cgi/user/fo_voting.pl b/selfforum-cgi/user/fo_voting.pl index 8ab2d0f..63ea716 100644 --- a/selfforum-cgi/user/fo_voting.pl +++ b/selfforum-cgi/user/fo_voting.pl @@ -4,7 +4,7 @@ # # # File: user/fo_voting.pl # # # -# Authors: André Malo , 2001-04-23 # +# Authors: André Malo # # # # Description: vote a posting, return the posting view # # # @@ -16,26 +16,25 @@ use vars qw( $Shared $Script $Config - $VERSION ); BEGIN { - my $null = $0; $null =~ s/\\/\//g; # for win :-( - $Bin = ($null =~ /^(.*)\/.*$/)? $1 : '.'; - $Shared = "$Bin/../shared"; - $Config = "$Bin/config"; - $Script = ($null =~ /^.*\/(.*)$/)? $1 : $null; - -# my $null = $0; +# my $null = $0; $null =~ s/\\/\//g; # for win :-( # $Bin = ($null =~ /^(.*)\/.*$/)? $1 : '.'; -# $Config = "$Bin/../../daten/forum/config"; -# $Shared = "$Bin/../../cgi-shared"; +# $Shared = "$Bin/../shared"; +# $Config = "$Bin/config"; # $Script = ($null =~ /^.*\/(.*)$/)? $1 : $null; + + my $null = $0; + $Bin = ($null =~ /^(.*)\/.*$/)? $1 : '.'; + $Config = "$Bin/../../cgi-config/forum"; + $Shared = "$Bin/../../cgi-shared"; + $Script = ($null =~ /^.*\/(.*)$/)? $1 : $null; } # setting umask, remove or comment it, if you don't need # -umask 006; +umask 000; use lib $Shared; use CGI::Carp qw(fatalsToBrowser); @@ -45,11 +44,22 @@ use Conf::Admin; use Posting::Cache; use Template::Posting; -use CGI qw(param header remote_addr request_method); +use CGI qw( + param + header + remote_addr + request_method +); +################################################################################ +# # Version check # -$VERSION = do { my @r =(q$Revision$ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r }; +# last modified: +# $Date$ (GMT) +# by $Author$ +# +sub VERSION {(q$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'} my $conf = read_script_conf ($Config, $Shared, $Script); @@ -70,8 +80,8 @@ my $voted; my ($tid, $mid) = map {$_ || 0} split /;/ => $fup, 2; -$tid = ($tid=~/(\d+)/)[0] || 0; -$mid = ($mid=~/(\d+)/)[0] || 0; +$tid = (defined $tid and $tid=~/(\d+)/)? $1: 0; +$mid = (defined $mid and $mid=~/(\d+)/)? $1: 0; if ($tid and $mid and $unid) {