farinspace / wpalchemy

Thin framework for wordpress
http://wpalchemy.com/
Other
416 stars 110 forks source link

Error with PHP7 #102

Closed generatepress closed 8 years ago

generatepress commented 9 years ago

Was testing with PHP7 and found the following:

PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP; WPAlchemy_MetaBox has a deprecated constructor in /wpalchemy/MetaBox.php on line 55

Might be worth tweaking.

helgatheviking commented 8 years ago

Pretty sure this can be fixed by changing

function WPAlchemy_MetaBox($arr)

to

function __construct($arr)

here

generatepress commented 8 years ago

Awesome - this works!