nieuws: replace existing thumb prefix in cover images
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 25 Aug 2018 23:52:01 +0000 (01:52 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 25 Aug 2018 23:52:01 +0000 (01:52 +0200)
Prevent duplicate resizing.

nieuws.inc.php

index 438c282ec46ef311346592e5ab0a01af4fdc23da..79f718d4b6585ba0296a7b4cfb1f3581ccab581b 100644 (file)
@@ -96,7 +96,7 @@ class ArchiveArticle
        function thumb($size = '300x')
        {
                if (!$this->image or $this->image[0] !== '/') return;
-               return "thumb/$size{$this->image}";
+               return preg_replace('{^(?:/thumb/[^/]*)?}', "thumb/$size", $this->image);
        }
 }