From 22af13f3f04bfa819afda5ace8c81f4e10c1e004 Mon Sep 17 00:00:00 2001 From: Ratnadeep Debnath Date: Mon, 29 Aug 2011 01:04:21 +0530 Subject: BUGFIX: Added question url in identi.ca share message --- askbot/skins/default/media/js/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/askbot/skins/default/media/js/post.js b/askbot/skins/default/media/js/post.js index 8216c10a..9c8a8da0 100644 --- a/askbot/skins/default/media/js/post.js +++ b/askbot/skins/default/media/js/post.js @@ -1531,7 +1531,7 @@ var socialSharing = function(){ var SERVICE_DATA = { //url - template for the sharing service url, params are for the popup identica: { - url: "http://identi.ca/index.php?action=newnotice&status_textarea={TEXT}", + url: "http://identi.ca/notice/new?status_textarea={TEXT}? {URL}", params: "width=820, height=526,toolbar=1,status=1,resizable=1,scrollbars=1" }, twitter: { -- cgit v1.2.3-1-g7c22 From f16984ad570b67491facf858c895186ab50cb377 Mon Sep 17 00:00:00 2001 From: Evgeny Fadeev Date: Mon, 29 Aug 2011 12:17:02 -0300 Subject: fixed percent encoding for identica sharing url --- askbot/skins/default/media/js/post.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/askbot/skins/default/media/js/post.js b/askbot/skins/default/media/js/post.js index 9c8a8da0..fa194e86 100644 --- a/askbot/skins/default/media/js/post.js +++ b/askbot/skins/default/media/js/post.js @@ -1531,7 +1531,7 @@ var socialSharing = function(){ var SERVICE_DATA = { //url - template for the sharing service url, params are for the popup identica: { - url: "http://identi.ca/notice/new?status_textarea={TEXT}? {URL}", + url: "http://identi.ca/notice/new?status_textarea={TEXT}%20{URL}", params: "width=820, height=526,toolbar=1,status=1,resizable=1,scrollbars=1" }, twitter: { -- cgit v1.2.3-1-g7c22