Skip to content

Commit

Permalink
BUGFIX #4847 Fixed ComplexTableField undefined in IE8 when opening a …
Browse files Browse the repository at this point in the history
…CTF popup in the Security section of the CMS (from r95091)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@95656 467b73ca-7a2a-4603-9d3b-597d59a354a9
  • Loading branch information
Sean Harvey committed Dec 16, 2009
1 parent e3e41a6 commit 05147ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/MemberTableField.js
Expand Up @@ -6,7 +6,7 @@
*/ */


// no confirm message for removal from a group // no confirm message for removal from a group
if(ComplexTableField && ComplexTableField != undefined) { if(typeof(ComplexTableField) != 'undefined') {
ComplexTableField.prototype.deleteConfirmMessage = null; ComplexTableField.prototype.deleteConfirmMessage = null;
} }


Expand Down

0 comments on commit 05147ff

Please sign in to comment.