The dedecms custom tag causes img to appear on the update list page. lib. the solution of phponline51 is to use a user-defined model when creating a website today. if you encounter some problems, the following error occurs: Fatalerror: CalltoamemberfunctionGetInnerText () onanon-objectinE: wwwincludeta dededecms: wemeng custom tag, causing img to appear on the update list page. lib. php on line 51 solution
When I used a custom model for a website today, I encountered some problems. when I updated the list page, I prompted:
Fatal error: Call to a member function GetInnerText () on a non-object in E: \ www \ include \ taglib \ channel \ img. lib. php on line 51
This error occurs when you update the list of custom models. it is easy to fix this problem.
Edit \ include \ taglib \ channel \ img. lib. php
Search for about 51 rows:
$ InnerTmp = $ arcTag-> GetInnerText ();
Replace it:
$ InnerTmp = ($ arcTag = "")? Trim ($ arcTag): trim ($ arcTag-> GetInnerText ());
Or
If ($ arcTag = ""){
? ? $ InnerTmp = trim ($ arcTag );
}
Else {
? ? $ InnerTmp = trim ($ arcTag-> GetInnerText ());
}
Then the list page can be updated normally and the problem is resolved.