From 189f89ec2a945aa7d12cf67dfd71b031d6572b23 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Wed, 9 Aug 2006 18:21:23 +0000 Subject: [PATCH] Fix typo in init code. --- modules/static-copy.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/static-copy.pl b/modules/static-copy.pl index e8485031..75cf6fc7 100644 --- a/modules/static-copy.pl +++ b/modules/static-copy.pl @@ -1,4 +1,4 @@ -# Copyright (C) 2004, 2005 Alex Schroeder +# Copyright (C) 2004, 2005, 2006 Alex Schroeder # # 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 @@ -16,15 +16,15 @@ # 59 Temple Place, Suite 330 # Boston, MA 02111-1307 USA -$ModulesDescription .= '

$Id: static-copy.pl,v 1.19 2005/12/29 16:02:08 as Exp $

'; +$ModulesDescription .= '

$Id: static-copy.pl,v 1.20 2006/08/09 18:21:23 as Exp $

'; $Action{static} = \&DoStatic; use vars qw($StaticDir $StaticAlways %StaticMimeTypes $StaticUrl); $StaticDir = '/tmp/static'; -$StaticUrl = ''; # change this! -$StaticFilesAlways = 0; # 1 = uploaded files only, 2 = all pages +$StaticUrl = ''; # change this! +$StaticAlways = 0; # 1 = uploaded files only, 2 = all pages my $StaticMimeTypes = '/etc/mime.types'; my %StaticFiles;