summaryrefslogtreecommitdiff
path: root/lib/App/Dthumb/Data.pm.PL
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-03-15 18:00:30 +0100
committerDaniel Friesel <derf@finalrewind.org>2011-03-15 18:00:30 +0100
commitad69fc565fe01e18bca7d3ad975156d6a2c8a604 (patch)
treef7606ab5fd33ada73ba21775d787672636cbd232 /lib/App/Dthumb/Data.pm.PL
parent3574da8815b830efc1317221c1348fd741559dd6 (diff)
Only place lightbox html links when lightbox is enabled
Diffstat (limited to 'lib/App/Dthumb/Data.pm.PL')
-rw-r--r--lib/App/Dthumb/Data.pm.PL5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/App/Dthumb/Data.pm.PL b/lib/App/Dthumb/Data.pm.PL
index eaf914e..a0fb4f5 100644
--- a/lib/App/Dthumb/Data.pm.PL
+++ b/lib/App/Dthumb/Data.pm.PL
@@ -103,7 +103,10 @@ B<get> function, dthumb will replace occurences of "<!-- $key -->" or "/* $key
sub set_vars {
my ($self, %vars) = @_;
- $self->{replace} = \%vars;
+
+ while (my ($key, $value) = each(%vars)) {
+ $self->{replace}->{$key} = $value;
+ }
}