Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
352 views
in Plugins by
retagged by

After upgrading PHP on my site from 7.1 to 7.2 I started to get the warning-like message:

Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP; qa_layer_10_from_layer_php has a deprecated constructor in /home/anton800/ask.myfinances.biz/qa-include/qa-base.php(720) : eval()'d code on line 3
of /home/anton800/ask.myfinances.biz/qa-plugin/user-management/layer.php

The issue seems to be related to the 'user-management' tool, which I'm going to disable.

Probably someone knows a fix/workaround for this issue?

Related issues:

Q2A version: 1.8.3

1 Answer

+1 vote
by

The answer in your linked question is the solution. Replace

function qa_html_theme_layer

with

function __construct

...