Two bugs in Blogengine-BlogRoll

Source: Internet
Author: User
Tags blogengine

1) when the control is generated, the rssButton class is not added to the current attribute, leading to the failure of css modification.

BlogEngine. Web \ App_Code \ Controls \ Blogroll. cs

Code:

        HtmlImage image = new HtmlImage();        image.Src = Utils.RelativeWebRoot + "pics/rssButton.gif";        image.Alt = "RSS feed for " + item.Name;        image.Attributes.Add("class", "rssButton");//KKCat Debug        feedAnchor.Controls.Add(image);
2) When non-xml is used as the storage medium, it does not provide good support. It is a bug.
BlogEngine.Web\admin\Pages\Blogroll.aspx.cs
// 120 rows
    }    else    {        Directory.CreateDirectory(fileName.Replace ("blogroll.xml",""));        File.Create(fileName).Close();        XmlDocument doc = new XmlDocument();        doc.LoadXml("<opml xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.0\">" +                                    "<body>" + "</body>" + "</opml>");        doc.Save(fileName);        AddBlog();    }

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.