Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • CoolKiwiBloke 12 posts 51 karma points
    Jan 04, 2015 @ 20:34
    CoolKiwiBloke
    0

    uBlogsyPostShowPost.cshtml RenderSocialMedia

    I just installed the uBlogsy in a 7.2.0 Umbraco site and found that that the social media links weren't getting rendered. The reason was that it compared a value of "1" instead of a value of "True".

            var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia");
            if (showSocialLinks == "1")

     

            var showSocialLinks = DataService.Instance.GetValueFromLanding(node, "uBlogsyGeneralShowSocialMedia");
            if (showSocialLinks == "True") // BUG was "1"

  • Anthony Dang 1404 posts 2558 karma points MVP 3x c-trib
    Jan 11, 2015 @ 19:42
    Anthony Dang
    0

    Thanks for the bug report.

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies