diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index a3db4045cef..b699467ce5d 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -109,6 +109,9 @@ Bug Fixes * SOLR-5255: Remove unnecessary call to fetch and watch live nodes in ZkStateReader cluster watcher. (Jessica Cheng via shalin) +* SOLR-5305: Admin UI - Reloading System-Information on Dashboard does not work + anymore (steffkes) + Security ---------------------- diff --git a/solr/webapp/web/js/scripts/index.js b/solr/webapp/web/js/scripts/index.js index f4983eb262a..df0b5da34c3 100644 --- a/solr/webapp/web/js/scripts/index.js +++ b/solr/webapp/web/js/scripts/index.js @@ -303,7 +303,7 @@ sammy.get $.ajax ( { - url : environment_basepath + '/admin/system?wt=json', + url : config.solr_path + '/admin/info/system?wt=json', dataType : 'json', context : this, beforeSend : function( arr, form, options ) @@ -337,4 +337,4 @@ sammy.get } ); } -); \ No newline at end of file +);