Index: trunk/extensions/ContributionReporting/ContributionTrackingStatistics_body.php |
— | — | @@ -100,7 +100,7 @@ |
101 | 101 | continue; |
102 | 102 | } |
103 | 103 | // Pull together templates, clicks, donations, conversion rate |
104 | | - $conversion_rate = ( $template[1] == 0 ) ? 0 : ( $template[2] / $template[1] ) * 100; |
| 104 | + $conversion_rate = ( $template[2] == 0 ) ? 0 : ( $template[2] / ( $template[1] + $template[2] ) ) * 100; |
105 | 105 | $amount = ( $template[3] == 0 ) ? 0 : $template[3]; |
106 | 106 | |
107 | 107 | $link = $wgContributionReportingBaseURL.$expanded_template[0]; |
— | — | @@ -116,7 +116,7 @@ |
117 | 117 | Xml::tags( 'td', array( 'align' => 'left'), $template_link ) . |
118 | 118 | Xml::element( 'td', array( 'align' => 'left'), $expanded_template[1] ) . |
119 | 119 | Xml::element( 'td', array( 'align' => 'left'), $expanded_template[2] ) . |
120 | | - Xml::element( 'td', array( 'align' => 'right'), $template[1] ) . |
| 120 | + Xml::element( 'td', array( 'align' => 'right'), $template[1] + $template[2] ) . |
121 | 121 | Xml::element( 'td', array( 'align' => 'right'), $template[2] ) . |
122 | 122 | Xml::element( 'td', array( 'align' => 'right'), $amount ) . |
123 | 123 | Xml::element( 'td', array( 'align' => 'right'), round($average, 2) ) . |