From 7c69d0127736f9ab6c5d710c82d0d99b57964b73 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 16 Oct 2008 05:30:31 +0000 Subject: [PATCH] "fixed bug reported by Frank Becker on the German list: Links in popup notification contains double egroupware path (caused by calling html::link AND htm::a_href on the link, which caused a double run through egw_session::link ) " --- notifications/inc/class.notifications_popup.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/inc/class.notifications_popup.inc.php b/notifications/inc/class.notifications_popup.inc.php index 4234f7eddb..67918ea12f 100644 --- a/notifications/inc/class.notifications_popup.inc.php +++ b/notifications/inc/class.notifications_popup.inc.php @@ -169,7 +169,7 @@ class notifications_popup implements notifications_iface { $dimensions = explode('x', $link->popup); $rendered_links[] = html::div($image.$link->text,'onclick="'.$this->jspopup($url, '_blank', $dimensions[0], $dimensions[1]).'"','link'); } else { - $rendered_links[] = html::div(html::a_href($image.$link->text, $url, false, 'target="_blank"'),'','link'); + $rendered_links[] = html::div(''.$image.$link->text.'','','link'); } }