Skip to content

Commit

Permalink
Fixes bug 738095 - Fixed coding error in signature summary model.
Browse files Browse the repository at this point in the history
  • Loading branch information
adngdb committed Mar 22, 2012
1 parent aeba4d1 commit d1b8453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp-php/application/models/signature_summary.php
Expand Up @@ -19,7 +19,7 @@ public function getSummary($report_type, $signature, $start, $end, $versions = a
$service = new Web_Service($config);
$host = Kohana::config('webserviceclient.socorro_hostname');
$report_type = rawurlencode($report_type);
$signature = rawurlencode(str_replace('/', '%2F', $signature));\
$signature = rawurlencode(str_replace('/', '%2F', $signature));
$start_date = rawurlencode($start);
$end_date = rawurlencode($end);
$url = "{$host}/signaturesummary/report_type/{$report_type}/signature/{$signature}/start_date/{$start_date}/end_date/{$end_date}";
Expand Down

0 comments on commit d1b8453

Please sign in to comment.