Merge pull request #4898 from rxu/ticket/15314

[ticket/15314] Fix convert class constructor
This commit is contained in:
Marc Alexander 2017-08-13 16:10:26 +02:00
commit 46684228d5
No known key found for this signature in database
GPG key ID: 50E0D2423696F995

View file

@ -53,7 +53,7 @@ class convert
var $p_master; var $p_master;
function convert($p_master) function __construct($p_master)
{ {
$this->p_master = $p_master; $this->p_master = $p_master;
} }