From eb7ef8615d3c93b06ba69a9a13b069bdb110590d Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Fri, 29 Apr 2022 10:51:29 +0200 Subject: [PATCH] whoops one __construct was missing --- plekit/php/nifty.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plekit/php/nifty.php b/plekit/php/nifty.php index f6ce944..aecbcbd 100644 --- a/plekit/php/nifty.php +++ b/plekit/php/nifty.php @@ -15,7 +15,7 @@ class PlekitNifty { var $class; var $size; - function PlekitNifty ($id,$class,$size='medium') { + function __construct ($id, $class, $size='medium') { $this->id = $id; $this->class=$class; $this->size=$size; -- 2.43.0