Skip to content

Commit

Permalink
Merge pull request #1961 from vibbow/fix_debugbar_url_tail_slash
Browse files Browse the repository at this point in the history
Fix Debugbar url tail slash issue
  • Loading branch information
lonnieezell authored Apr 25, 2019
2 parents 7f922f0 + fe8b70a commit cf2a57c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Debug/Toolbar/Views/toolbarloader.js.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function loadDoc(time) {
}
};

xhttp.open("GET", url + "?debugbar_time=" + time, true);
xhttp.open("GET", url + "/?debugbar_time=" + time, true);
xhttp.send();
}

Expand Down

0 comments on commit cf2a57c

Please sign in to comment.