public
Fork of pjhyett/github-services
Description: GitHub Services Integration
Homepage:
Clone URL: git://github.com/johnreilly/github-services.git
fixed incorrect parameter when constructing the FogBugz url
johnreilly (author)
Wed Aug 06 09:40:45 -0700 2008
commit  e52dd42305fabef868ed59fc6d21fd6810fcc473
tree    2442098a0decf33bda5487faf6ed61d85fde870e
parent  215d825c14185809b8b01221376595a2d24ea90a
...
26
27
28
29
 
30
31
32
...
26
27
28
 
29
30
31
32
0
@@ -26,7 +26,7 @@ service :fogbugz do |data, payload|
0
         fb_file = CGI.escape("#{branch}/#{f}")
0
         
0
         #build the GET request, and send it to fogbugz
0
-        fb_url = "#{data['cvs_submit_url']}?ixBug=#{fb_bugzid}&sRepo=#{fb_repo}&sFile=#{fb_file}&sPrev=#{fb_r1}&sNew=#{fb_r2}"
0
+        fb_url = "#{data['cvssubmit_url']}?ixBug=#{fb_bugzid}&sRepo=#{fb_repo}&sFile=#{fb_file}&sPrev=#{fb_r1}&sNew=#{fb_r2}"
0
         url = URI.parse(fb_url)
0
         conn = Net::HTTP.new(url.host, url.port)
0
         conn.use_ssl = true

Comments