From d1fe24ec2d186fbc9e81642f6c5489b248161f94 Mon Sep 17 00:00:00 2001 From: messju Date: Mon, 24 Mar 2003 09:37:21 +0000 Subject: [PATCH] made onmouseout XHTML-compatible in function.popup.php --- libs/plugins/function.popup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/plugins/function.popup.php b/libs/plugins/function.popup.php index 96adc01e..203a3b8f 100644 --- a/libs/plugins/function.popup.php +++ b/libs/plugins/function.popup.php @@ -67,7 +67,7 @@ function smarty_function_popup($params, &$smarty) if (isset($delay)) { $retval .= ",DELAY,$delay"; } if (!empty($hauto)) { $retval .= ",HAUTO"; } if (!empty($vauto)) { $retval .= ",VAUTO"; } - $retval .= ');" onMouseOut="nd();"'; + $retval .= ');" onmouseout="nd();"'; return $retval; }