Skip to content

Commit

Permalink
Modified the backend
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Bowser committed Dec 1, 2009
1 parent 374089c commit 7e22146
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/framework/src/com/phonegap/ContactManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ private void searchPeople(String name, String number)
if (name.length() == 0)
{
name = "%";
conditions += People.NAME + "LIKE ? AND ";
conditions += People.NAME + " LIKE ? AND ";
}
else
{
Expand Down Expand Up @@ -169,7 +169,7 @@ private void processResults(Cursor cur, boolean all){
if (all)
mView.loadUrl("javascript:navigator.ContactManager.droidDone()");
else
mView.loadUrl("javascript:navigator.Contacts.droidDoneContacts();");
mView.loadUrl("javascript:navigator.Contacts.droidDone();");
}
else
{
Expand Down

0 comments on commit 7e22146

Please sign in to comment.