From 6e28933f18ed7279330883494fe1cb82ab0f89a5 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 2 Apr 2013 08:13:37 +0000 Subject: [PATCH] missing onLoad attibute in body tag, causing all sorts of things to fail --- phpgwapi/inc/class.egw_framework.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_framework.inc.php b/phpgwapi/inc/class.egw_framework.inc.php index 59c9546ed0..441f63eb89 100644 --- a/phpgwapi/inc/class.egw_framework.inc.php +++ b/phpgwapi/inc/class.egw_framework.inc.php @@ -1226,7 +1226,7 @@ window.egw.LAB.script( { if($what == 'onLoad') { - $js .= '"egw.LAB.wait(function() {'. htmlspecialchars($data).'})"'; + $js .= 'onLoad="egw.LAB.wait(function() {'. htmlspecialchars($data).'})"'; continue; } $js .= ' '.$what.'="' . htmlspecialchars($data) . '"';