Copied to clipboard

Flag this post as spam?

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


  • Max Mumford 266 posts 293 karma points
    Aug 01, 2011 @ 17:37
    Max Mumford
    0

    IE6 compatibility?

    plugin does not work in IE6. There are a couple of workarounds on the web. Perhaps they could be worked into the next update?

    Max

  • Max Mumford 266 posts 293 karma points
    Aug 01, 2011 @ 18:08
    Max Mumford
    0

    As a temporary fix I have editted doc2form's .ascx.cs file to check for the recaptcha datatype and IE6 in the useragent string and if both are found then exclude the property and validation rule:

    foreach (umbraco.cms.businesslogic.propertytype.PropertyType pt in t.PropertyTypes)
    {
      if (pt.DataTypeDefinition.DataType.DataTypeName == "[EyeCatch] reCAPTCHA" & userAgent.IndexOf("MSIE 6.0") > -1)
      {
        //do nothing
      }//if datatype is not recaptcha and browser is not ie6
      else
        {//render control.........
  • Ove Andersen 435 posts 1541 karma points c-trib
    Oct 25, 2011 @ 22:29
    Ove Andersen
    0

    Will take a look at this for v2.1

Please Sign in or register to post replies

Write your reply to:

Draft