mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
PHP7 errors fix.
Warning: PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP.
This commit is contained in:
parent
2cd07067de
commit
c58b5bf4bf
6 changed files with 9 additions and 9 deletions
|
|
@ -779,7 +779,7 @@ class contentItem extends Object
|
|||
var $contents_link = null;
|
||||
var $domain = null;
|
||||
|
||||
function contentItem($browser_title='')
|
||||
function __construct($browser_title='')
|
||||
{
|
||||
$this->browser_title = $browser_title;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -671,7 +671,7 @@ class mcontentItem extends Object
|
|||
var $contents_link = null;
|
||||
var $domain = null;
|
||||
|
||||
function mcontentItem($browser_title='')
|
||||
function __construct($browser_title='')
|
||||
{
|
||||
$this->browser_title = $browser_title;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue