am 43d67b07: Merge "Extract the full telephone number from the tel: URL." into eclair-mr2

Merge commit '43d67b0762c31a0af9ed92336803b25aed7b1f06' into eclair-mr2-plus-aosp

* commit '43d67b0762c31a0af9ed92336803b25aed7b1f06':
  Extract the full telephone number from the tel: URL.
diff --git a/src/com/android/contacts/TwelveKeyDialer.java b/src/com/android/contacts/TwelveKeyDialer.java
index cb0b06d..d28f01d 100644
--- a/src/com/android/contacts/TwelveKeyDialer.java
+++ b/src/com/android/contacts/TwelveKeyDialer.java
@@ -295,7 +295,7 @@
             if (uri != null) {
                 if ("tel".equals(uri.getScheme())) {
                     // Put the requested number into the input area
-                    String data = uri.getSchemeSpecificPart();
+                    String data = uri.toString().substring("tel:".length());
                     setFormattedDigits(data);
                 } else {
                     String type = intent.getType();