projects
/
matthijs
/
upstream
/
blosxom.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
165fdb1
)
Move entries param('-all') check outside find.
author
Gavin Carr
<gavin@openfusion.com.au>
Fri, 18 Jun 2010 17:39:06 +0000
(18:39 +0100)
committer
Gavin Carr
<gavin@openfusion.com.au>
Fri, 18 Jun 2010 17:39:06 +0000
(18:39 +0100)
blosxom.cgi
patch
|
blob
|
history
diff --git
a/blosxom.cgi
b/blosxom.cgi
index fef5750e3d07ba7370ab01fac21bac8a6190c795..dca7e01e75476342c15b5110993249d62c695b47 100755
(executable)
--- a/
blosxom.cgi
+++ b/
blosxom.cgi
@@
-550,6
+550,7
@@
sub load_template {
# Define default entries subroutine
$entries = sub {
my ( %files, %indexes, %others );
+ my $param_all = param('-all');
find(
sub {
my $d;
@@
-579,7
+580,7
@@
$entries = sub {
# static rendering bits
my $static_file
= "$static_dir/$1/index." . $static_flavours[0];
- if (
param('-all')
+ if (
$param_all
or !-f $static_file
or stat($static_file)->mtime < $mtime )
{