From: Andrew Dolgov Date: Wed, 17 Feb 2016 09:29:42 +0000 (+0300) Subject: minitemplator: use proper constructor X-Git-Tag: 16.3~28 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=1003f71e0459b4b5e7d5e7b393d0baba02e82808;p=tt-rss.git minitemplator: use proper constructor --- diff --git a/lib/MiniTemplator.class.php b/lib/MiniTemplator.class.php index a139473f..e70f0a47 100644 --- a/lib/MiniTemplator.class.php +++ b/lib/MiniTemplator.class.php @@ -160,7 +160,7 @@ var $outputString; // string buffer for the generated HTML pa * Constructs a MiniTemplator object. * @access public */ -function MiniTemplator() { +function __construct() { $this->templateValid = false; } //--- template string handling --------------------------------------------------------------------------------------