From: Sarven Capadisli Date: Thu, 31 Dec 2009 16:37:46 +0000 (+0000) Subject: Using semicolon to seperate lat and long; RFC2426 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5a66d27637237359b2d81f2ac21e721703b10891;p=quix0rs-gnu-social.git Using semicolon to seperate lat and long; RFC2426 --- diff --git a/js/util.js b/js/util.js index 8716a33609..f535813842 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);