Skip to content

Commit

Permalink
Fix 2709
Browse files Browse the repository at this point in the history
  • Loading branch information
Rosiak committed Jan 8, 2016
1 parent 89a22ef commit 82a302e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions html/pages/notifications.inc.php
Expand Up @@ -112,7 +112,7 @@
<?php } ?>
<div class="row">
<div class="col-md-12">
<h3><a class="btn btn-default" href="/notifications/archive">Show Archive</a></h3>
<h3><a class="btn btn-default" href="<?php echo($config['base_url']); ?>notifications/archive">Show Archive</a></h3>
</div>
</div>
</div>
Expand Down Expand Up @@ -164,7 +164,7 @@
success: function (data) {
if( data.status == "ok" ) {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
window.location.href="/notifications";
window.location.href="<?php echo($config['base_url']); ?>notifications";
}
else {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
Expand Down Expand Up @@ -208,7 +208,7 @@
success: function (data) {
if( data.status == "ok" ) {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
window.location.href="/notifications";
window.location.href="<?php echo($config['base_url']); ?>notifications";
}
else {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
Expand All @@ -227,7 +227,7 @@
success: function (data) {
if( data.status == "ok" ) {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
window.location.href="/notifications";
window.location.href="<?php echo($config['base_url']); ?>notifications";
}
else {
$("#message").html('<div class="alert alert-info">' + data.message + '</div>');
Expand Down

1 comment on commit 82a302e

@laf
Copy link
Member

@laf laf commented on 82a302e Jan 8, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't need the () around echo :)

Please sign in to comment.