From 5a66d27637237359b2d81f2ac21e721703b10891 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 31 Dec 2009 16:37:46 +0000 Subject: Using semicolon to seperate lat and long; RFC2426 --- js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/util.js b/js/util.js index 8716a3360..f53581384 100644 --- a/js/util.js +++ b/js/util.js @@ -469,7 +469,7 @@ var SN = { // StatusNet } if (typeof(location.name) == 'undefined') { - $('#'+SN.C.S.NoticeLocationName).text(position.coords.latitude + ' ' + position.coords.longitude); + $('#'+SN.C.S.NoticeLocationName).text(position.coords.latitude + ';' + position.coords.longitude); } else { $('#'+SN.C.S.NoticeLocationName).text(location.name); -- cgit v1.2.3-54-g00ecf