From 82a302e13576390e9924fbc92ed78106e129cdb3 Mon Sep 17 00:00:00 2001 From: Rosiak Date: Sat, 9 Jan 2016 00:03:09 +0100 Subject: [PATCH] Fix 2709 #2709 --- html/pages/notifications.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/html/pages/notifications.inc.php b/html/pages/notifications.inc.php index 602338d916..b85ef36e28 100644 --- a/html/pages/notifications.inc.php +++ b/html/pages/notifications.inc.php @@ -112,7 +112,7 @@ $notifications = new ObjCache('notifications');
@@ -164,7 +164,7 @@ $(function() { success: function (data) { if( data.status == "ok" ) { $("#message").html('
' + data.message + '
'); - window.location.href="/notifications"; + window.location.href="notifications"; } else { $("#message").html('
' + data.message + '
'); @@ -208,7 +208,7 @@ $(function() { success: function (data) { if( data.status == "ok" ) { $("#message").html('
' + data.message + '
'); - window.location.href="/notifications"; + window.location.href="notifications"; } else { $("#message").html('
' + data.message + '
'); @@ -227,7 +227,7 @@ $(function() { success: function (data) { if( data.status == "ok" ) { $("#message").html('
' + data.message + '
'); - window.location.href="/notifications"; + window.location.href="notifications"; } else { $("#message").html('
' + data.message + '
');