v. 13.2
комбинация: {image-x} = не показывает картинку .webp
комбинация: {short-story} = без проблем выводит .webp
1.
добавил в файле thumb.class.php
function show() {
if( $this->img['format'] == "JPG" || $this->img['format'] == "JPEG" ) {
//JPEG
imagejpeg( $this->img['src'], "", $this->img['quality'] );
} elseif( $this->img['format'] == "PNG" ) {
//PNG
imagepng( $this->img['src'] );
} elseif( $this->img['format'] == "GIF" ) {
//GIF
imagegif( $this->img['src'] );
}
/////////////
elseif(