Skip to content

Commit

Permalink
Issue #3100: Changed erroneous commata to semicolons.
Browse files Browse the repository at this point in the history
Removed errantly added FieldNames param from FormUpdate.
  • Loading branch information
stefanhaerter committed Mar 6, 2024
1 parent 4583e0f commit 8df4eb6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.Agent.DynamicFieldDBSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ Core.Agent.DynamicFieldDBSearch = (function(TargetNS) {
}

if ( DoFormUpdate ) {
Core.AJAX.FormUpdate( $('#' + Field).closest('form'), 'AJAXUpdate', FieldName, Core.Config.Get('DynamicFieldNames') );
Core.AJAX.FormUpdate( $('#' + Field).closest('form'), 'AJAXUpdate', FieldName );
}

return false;
Expand Down
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.Agent.TicketEmailOutbound.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Core.Agent.TicketEmailOutbound = (function (TargetNS) {
*/
TargetNS.Init = function () {

var ArticleComposeOptions = Core.Config.Get('ArticleComposeOptions'),
var ArticleComposeOptions = Core.Config.Get('ArticleComposeOptions');

// add event listeners to remove or move customers
$('.CustomerTicketRemove').on('click', function () {
Expand Down
2 changes: 1 addition & 1 deletion var/httpd/htdocs/js/Core.Agent.TicketForward.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Core.Agent.TicketForward = (function (TargetNS) {
*/
TargetNS.Init = function () {

var ArticleComposeOptions = Core.Config.Get('ArticleComposeOptions'),
var ArticleComposeOptions = Core.Config.Get('ArticleComposeOptions');

// add event listeners to remove or move customers
$('.CustomerTicketRemove').on('click', function () {
Expand Down

0 comments on commit 8df4eb6

Please sign in to comment.