Deprecated : Assigning the return value of new by reference is deprecated in……
Solution
Where to find the error code
Before the change: $helper =& new GK3NewsShowHelper();
After the change: $helper = new GK3NewsShowHelper();
Remove &
Deprecated : Assigning the return value of new by reference is deprecated in……
Solution
Where to find the error code
Before the change: $helper =& new GK3NewsShowHelper();
After the change: $helper = new GK3NewsShowHelper();
Remove &