--- android/PicturePoster/src/dk/thoerup/pictureposter/PostActivity.java 2010/02/21 19:03:46 599 +++ android/PicturePoster/src/dk/thoerup/pictureposter/PostActivity.java 2010/02/21 19:59:36 600 @@ -194,8 +194,8 @@ data.add( new BasicNameValuePair("title", titleStr) ); data.add( new BasicNameValuePair("note", noteStr) ); - data.add( new BasicNameValuePair("latitude", hasLoc ? Float.toString((float)currentLocation.getLatitude()) : "-") ); - data.add( new BasicNameValuePair("longitude", hasLoc ? Float.toString((float)currentLocation.getLongitude()) : "-" ) ); + data.add( new BasicNameValuePair("latitude", hasLoc ? Float.toString((float)currentLocation.getLatitude()) : "") ); + data.add( new BasicNameValuePair("longitude", hasLoc ? Float.toString((float)currentLocation.getLongitude()) : "" ) ); String encoded = URLEncodedUtils.format(data, "UTF-8"); entity.addPart("text", new StringBody(encoded, URLEncodedUtils.CONTENT_TYPE, Charset.forName("UTF-8") ));