Dedecms: custom tags for dream weaving, causing img. lib. phponline51 to appear on the update list page. solution:

Source: Internet
Author: User
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.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.