From a83a5aa90051b21df970a456aa35611cbd7a8add Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Wed, 6 Mar 2013 13:02:44 +0100 Subject: [PATCH] fix #2128 --- core/js/js.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/js/js.js b/core/js/js.js index 582d1f808d..1a94215c27 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -349,7 +349,7 @@ OC.Notification={ }, show: function(text) { if(($('#notification').filter('span.undo').length == 1) || OC.Notification.isHidden()){ - $('#notification').html(html); + $('#notification').html(text); $('#notification').fadeIn().css("display","inline"); }else{ OC.Notification.queuedNotifications.push($(text).html());