Skip to content

Commit

Permalink
dbUpdateGetURL() should send link_type/id not ptype/id.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemorken committed Dec 10, 2023
1 parent 397c5e4 commit 5627d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion view/anyModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2113,7 +2113,7 @@ anyModel.prototype.dbUpdateGetURL = function (options)

// Link elements?
param_str += options.par_type && options.par_id
? "&ptype="+options.par_type+"&pid="+options.par_id // TODO! Is this used on server?
? "&link_type="+options.par_type+"&link_id="+options.par_id // TODO! Is this used on server?
: "";

return this._getDataSourceName() + param_str;
Expand Down

0 comments on commit 5627d09

Please sign in to comment.