Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 94e63dea9e32
Choose a base ref
...
head repository: openmrs/openmrs-core
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8e10c46d320a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 28, 2014

  1. Copy the full SHA
    c8f1a82 View commit details

Commits on Mar 4, 2014

  1. Merge pull request #685 from ShubhamRai/TRUNK-4148

    TRUNK-4148 Providers are no longer listed by default
    dkayiwa committed Mar 4, 2014
    Copy the full SHA
    8e10c46 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 webapp/src/main/webapp/WEB-INF/view/scripts/jquery-ui/js/openmrsSearch.js
Original file line number Diff line number Diff line change
@@ -195,7 +195,7 @@ function OpenmrsSearch(div, showIncludeVoided, searchHandler, selectionHandler,
notification = div.find("#searchWidgetNotification");
loadingMsgObj = div.find("#loadingMsg");
showSearchButton = o.showSearchButton ? true : false;
lastSearchParams = (o.lastSearchParams !== null) ? o.lastSearchParams : null;
lastSearchParams = (o.lastSearchParams != null) ? o.lastSearchParams : null;

this._div = div;