]> git.sesse.net Git - pr0n/blobdiff - perl/Sesse/pr0n/Common.pm
Unbreak a weird special case.
[pr0n] / perl / Sesse / pr0n / Common.pm
index cd43338a9c3719db39e9aceda92e68045f300177..6685008d9a98eba693b6eceb7718521c20628123 100644 (file)
@@ -128,7 +128,8 @@ sub get_query_string {
        my $first = 1;
        my $str = "";
 
-       while (my ($key, $value) = each %$param) {
+       for my $key (sort keys %$param) {
+               my $value = $param->{$key};
                next unless defined($value);
                next if (defined($defparam->{$key}) && $value == $defparam->{$key});
 
@@ -602,7 +603,6 @@ sub ensure_cached {
                                $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, 0);
                                $new_dbwidth = $width = $img->Get('columns');
                                $new_dbheight = $height = $img->Get('rows');
-                               @$img = ();
                        } else {
                                $img = Image::Magick->new;
                                $width = $dbwidth;
@@ -1006,7 +1006,7 @@ sub set_last_modified {
        my ($res, $mtime) = @_;
 
        my $str = POSIX::strftime("%a, %d %b %Y %H:%M:%S GMT", gmtime($mtime));
-       $res->headers({ 'Last-Modified' => $str });
+       $res->header('Last-Modified' => $str);
 }
 
 sub get_server_name {