You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2012/12/19 02:58:32 UTC

[3/10] git commit: Include a comment before jsonp output

Include a comment before jsonp output


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/6429a44b
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/6429a44b
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/6429a44b

Branch: refs/heads/1.3.x
Commit: 6429a44b2b6589c234a519db9e2ac8f61f0a24ae
Parents: c58e2d3
Author: Robert Newson <rn...@apache.org>
Authored: Wed Dec 19 00:46:45 2012 +0000
Committer: Robert Newson <rn...@apache.org>
Committed: Wed Dec 19 01:37:58 2012 +0000

----------------------------------------------------------------------
 src/couchdb/couch_httpd.erl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/6429a44b/src/couchdb/couch_httpd.erl
----------------------------------------------------------------------
diff --git a/src/couchdb/couch_httpd.erl b/src/couchdb/couch_httpd.erl
index 9ded36d..3e3415b 100644
--- a/src/couchdb/couch_httpd.erl
+++ b/src/couchdb/couch_httpd.erl
@@ -771,7 +771,7 @@ start_jsonp() ->
     case get(jsonp) of
         no_jsonp -> [];
         [] -> [];
-        CallBack -> CallBack ++ "("
+        CallBack -> ["/* CouchDB */", CallBack, "("]
     end.
 
 end_jsonp() ->