Hi, at file modules/posstaticfooter/models/Staticfooter.php, in line 55 there is a bug
if(count($newObject>0)) {
change it to
if(count($object) > 0) {
should fix it
btw this code is nightmare 😐
Hi, at file modules/posstaticfooter/models/Staticfooter.php, in line 55 there is a bug
if(count($newObject>0)) {
change it to
if(count($object) > 0) {
should fix it
btw this code is nightmare 😐
Hi, at file Staticfooter.php in line 55 is bug
if(count($newObject>0)) {
change it to
if(count($object) > 0) {
should fix it
btw this code is nightmare :|