From 83a6f40953254b035702edcd70625055389010c1 Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Fri, 9 Feb 2007 15:48:40 +0000 Subject: [PATCH] Missing unit 'px' added. W3C CSS validator whines about it: "Invalid number : width only 0 can be a length. You must put an unit after your number : 150" --- includes/ImageGallery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ImageGallery.php b/includes/ImageGallery.php index c9eb96a029..86bf786d33 100644 --- a/includes/ImageGallery.php +++ b/includes/ImageGallery.php @@ -212,7 +212,7 @@ class ImageGallery . htmlspecialchars( $img->getLastError() ) . ''; } else { $vpad = floor( ( 1.25*$this->mHeights - $thumb->height ) /2 ) - 2; - $thumbhtml = "\n\t\t\t".'
' + $thumbhtml = "\n\t\t\t".'
' . $sk->makeKnownLinkObj( $nt, $thumb->toHtml() ) . '
'; } -- 2.20.1