summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2012-08-28 10:07:57 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2012-08-28 10:07:57 -0700
commit7cc48ea51918f8c7c2d75ac524ee98643685c01c (patch)
tree8fc2e76a7640ede3adbc5e28f3bd0f1113af5daa
parentadb2b6554ff7670390a0acd5507dffe430a4cd0d (diff)
parent3d2e213ce176cb320ac52c71b00cb591beae8e04 (diff)
downloadpackages_apps_Browser-7cc48ea51918f8c7c2d75ac524ee98643685c01c.zip
packages_apps_Browser-7cc48ea51918f8c7c2d75ac524ee98643685c01c.tar.gz
packages_apps_Browser-7cc48ea51918f8c7c2d75ac524ee98643685c01c.tar.bz2
am 3d2e213c: Merge "Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3."
* commit '3d2e213ce176cb320ac52c71b00cb591beae8e04': Fix the issue the SQL request built by QuickSearchBox is not handled properly by Sqlite3.
-rw-r--r--res/xml/bookmarks_searchable.xml2
-rw-r--r--res/xml/searchable.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/res/xml/bookmarks_searchable.xml b/res/xml/bookmarks_searchable.xml
index de56add..8b83f26 100644
--- a/res/xml/bookmarks_searchable.xml
+++ b/res/xml/bookmarks_searchable.xml
@@ -25,6 +25,6 @@
android:searchSettingsDescription="@string/search_settings_description"
android:searchSuggestAuthority="browser"
android:searchSuggestPath="bookmarks"
- android:searchSuggestSelection="url LIKE ?"
+ android:searchSuggestSelection="bookmarks.url LIKE ?"
android:searchSuggestIntentAction="android.intent.action.VIEW"
/>
diff --git a/res/xml/searchable.xml b/res/xml/searchable.xml
index 3397a40..a06d5b0 100644
--- a/res/xml/searchable.xml
+++ b/res/xml/searchable.xml
@@ -27,6 +27,6 @@
android:inputType="textUri"
android:imeOptions="actionGo"
android:searchSuggestAuthority="browser"
- android:searchSuggestSelection="url LIKE ?"
+ android:searchSuggestSelection="history.url LIKE ?"
android:searchSuggestIntentAction="android.intent.action.VIEW"
/>