Skip to content

Commit

Permalink
N°5986 - Fix missing "categories" in CheckDictionary() (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdejin authored Feb 13, 2023
1 parent 0ad4af6 commit e973bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ function CheckDictionary(bRefresh)
sModules = oModules.val();
}
$('#content_dictionary').html('<img title=\"loading...\" src=\"../images/indicator.gif\" /> Searching for missing dictionary items');
ajax_request = $.get(GetAbsoluteUrlAppRoot()+'toolkit/ajax.toolkit.php', { 'operation': 'check_dictionary', 'rebuild_toolkit_env': bRefresh, 'lang': sLang },
ajax_request = $.get(GetAbsoluteUrlAppRoot()+'toolkit/ajax.toolkit.php', { 'operation': 'check_dictionary', 'rebuild_toolkit_env': bRefresh, 'lang': sLang, 'modules': sModules },
function(data)
{
$('#content_dictionary').empty();
Expand Down Expand Up @@ -966,7 +966,7 @@ function CheckDictionary(bRefresh)
}
$('#content_dictionary').html('<img title=\"loading...\" src=\"../images/indicator.gif\" /> Searching for missing dictionary items');
$('#bt_content_dictionary').attr("disabled", true);
ajax_request = $.get(GetAbsoluteUrlAppRoot()+'toolkit/ajax.toolkit.php', { 'operation': 'check_dictionary', 'rebuild_toolkit_env': bRefresh, 'lang': sLang },
ajax_request = $.get(GetAbsoluteUrlAppRoot()+'toolkit/ajax.toolkit.php', { 'operation': 'check_dictionary', 'rebuild_toolkit_env': bRefresh, 'lang': sLang, 'modules': sModules },
function(data)
{
$('#content_dictionary').empty();
Expand Down

0 comments on commit e973bc4

Please sign in to comment.