]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/user/fo_voting.pl
fixed some bugs, prepared the 0.98 release
[selfforum.git] / selfforum-cgi / user / fo_voting.pl
index 284857e4938a9922111a237bc4e32c8f7e0ab765..a37fbe53d68549a44f24e888dbcc0e2a505d34c8 100644 (file)
@@ -19,17 +19,17 @@ use vars qw(
 );
 
 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; #$null =~ s/\\/\//g; # for win :-(
+  my $null = $0; $null =~ s/\\/\//g; # for win :-(
   $Bin     = ($null =~ /^(.*)\/.*$/)? $1 : '.';
-  $Config  = "$Bin/../../../cgi-config/devforum";
-  $Shared  = "$Bin/../../../cgi-shared";
+  $Shared  = "$Bin/../shared";
+  $Config  = "$Bin/config";
   $Script  = ($null =~ /^.*\/(.*)$/)? $1 : $null;
+
+#  my $null = $0; #$null =~ s/\\/\//g; # for win :-(
+#  $Bin     = ($null =~ /^(.*)\/.*$/)? $1 : '.';
+#  $Config  = "$Bin/../../../cgi-config/devforum";
+#  $Shared  = "$Bin/../../../cgi-shared";
+#  $Script  = ($null =~ /^.*\/(.*)$/)? $1 : $null;
 }
 
 use lib $Shared;
@@ -66,7 +66,7 @@ my ($tid, $mid) = map {$_ || 0} split /;/ => $fup, 2;
 $tid = ($tid=~/(\d+)/)[0] || 0;
 $mid = ($mid=~/(\d+)/)[0] || 0;
 
-my $cache = new Posting::Cache ($conf->{files}->{cacheFile});
+my $cache = new Posting::Cache ($conf->{files}->{cachePath});
 my $hash;
 
 if ($hash = $cache -> pick ({thread => $tid, posting => $mid})) {
@@ -105,7 +105,7 @@ print_posting_as_HTML (
     cgi          => $cgi,
     tree         => $tree,
     voted        => $voted || '',
-    cachefile    => $conf -> {files} -> {cacheFile}
+    cachepath    => $conf -> {files} -> {cachePath}
   }
 );
 

patrick-canterino.de