From 05734803dfe43eaba87d3419fe4ef39309eccb28 Mon Sep 17 00:00:00 2001 From: Rosiak Date: Mon, 11 Jan 2016 13:14:20 +0100 Subject: [PATCH] Fix missing slash if base_url set --- 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 713a12eb3..17c89e744 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 + '
');