mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 22:38:51 +00:00
bugFix #0002616 : change the behavior of ApplicationBaseURL. Now the object return a standard path(without a slash at the end of the path) That means every string added the URL ApplicationBaseURL must start with a Slash.
This commit is contained in:
@@ -73,7 +73,7 @@ var SOGoResizableTableInterface = {
|
||||
saveColumnsState: function() {
|
||||
this.computeColumnsWidths();
|
||||
if (!$(document.body).hasClassName("popup")) {
|
||||
var url = ApplicationBaseURL + "saveColumnsState";
|
||||
var url = ApplicationBaseURL + "/saveColumnsState";
|
||||
var data = this.ratios;
|
||||
var columns = data.keys();
|
||||
var params = "columns=" + columns.join(",")
|
||||
|
||||
Reference in New Issue
Block a user