Merge pull request #1202 from roed/3.1

fixed error property $ of object is not a function
This commit is contained in:
Ingo Schommer 2013-02-19 00:25:52 -08:00
commit aa0d4e6c90

View File

@ -1051,7 +1051,7 @@ jQuery.noConflict();
}(jQuery));
var statusMessage = function(text, type) {
text = $('<div/>').text(text).html(); // Escape HTML entities in text
text = jQuery('<div/>').text(text).html(); // Escape HTML entities in text
jQuery.noticeAdd({text: text, type: type});
};