In admin/reports/mandrill if the number of sent mails is 0 (zero), the page show the warning message:
"Warning: Division by zero in mandrill_reports_dashboard_page() (line 145 of /var/www/frasesdeangeles.com/sites/all/modules/mandrill/modules/mandrill_reports/mandrill_reports.module)."
The line 145 of the file is:
$percent = number_format($url['unique_clicks'] / $url['sent'], 2) * 100;
In this case $url['sent'] = 0.
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | mandrill-divide-by-zero-2298069-9364087.patch | 644 bytes | jefflogan |
Comments
Comment #1
jefflogan commentedI've prepared a patch for this issue. As it's my first patch, let me know if i've done anything wrong.
Comment #2
jefflogan commentedComment #3
gcbPatch looks great Jeff, thanks!