diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 19:49:44 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-03-02 19:49:44 +0100 |
commit | 6905ea23a80deb6b83937637c9e621038d9411d9 (patch) | |
tree | 0b51d4bc6bbac0a009bb5ab2c9b98ad9c8120a41 /lib | |
parent | 37e21a2515a4b80ee661a2422204cfc42faf927b (diff) |
Update App::Dthumb filenames, add initial App::Dthumb test
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/App/Dthumb.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/App/Dthumb.pm b/lib/App/Dthumb.pm index 365eaba..49f4783 100755 --- a/lib/App/Dthumb.pm +++ b/lib/App/Dthumb.pm @@ -137,7 +137,7 @@ sub new { height => $conf{size} * $conf{spacing} . 'px', ); - $ref->{html} = $ref->{data}->get('html_start'); + $ref->{html} = $ref->{data}->get('html_start.dthumb'); return bless($ref, $obj); } @@ -337,7 +337,7 @@ Write the cached HTML data to F<index.xhtml>. sub write_out_html { my ($self) = @_; - $self->{html} .= $self->{data}->get('html_end'); + $self->{html} .= $self->{data}->get('html_end.dthumb'); open(my $fh, '>', $self->{config}->{file_index}); print {$fh} $self->{html}; |