diff options
| author | spiderr <spiderr@bitweaver.org> | 2024-06-04 13:17:33 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2024-06-04 13:17:33 -0400 |
| commit | 6ba6d8397a0407c914e6ef9919d09a4456183b72 (patch) | |
| tree | c7fedb08e8e035a55c3e506e7d4651e4c4d8069b | |
| parent | 8c3fb39efe99bc18f22669dfee386958e308bb3a (diff) | |
| download | util-6ba6d8397a0407c914e6ef9919d09a4456183b72.tar.gz util-6ba6d8397a0407c914e6ef9919d09a4456183b72.tar.bz2 util-6ba6d8397a0407c914e6ef9919d09a4456183b72.zip | |
convert $_REQUEST['ajax_xml'] to $_REQUEST['ajax_api']
| -rwxr-xr-x | javascript/suggest/suggest.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/javascript/suggest/suggest.js b/javascript/suggest/suggest.js index 4c46ff9..aad5026 100755 --- a/javascript/suggest/suggest.js +++ b/javascript/suggest/suggest.js @@ -181,7 +181,7 @@ TextSuggest.prototype = { callRicoAjaxEngine: function() { var callParms = []; callParms.push( this.id + '_request'); - callParms.push( 'ajax_xml=1' ); + callParms.push( 'ajax_api=1' ); callParms.push( 'id=' + this.id); callParms.push( 'count=' + this.options.count); callParms.push( 'find=' + this.lastRequestString); |
