Changeset 3781:a86e029cb95d for plugins/antispam/inc/lib.dc.antispam.php
- Timestamp:
- 07/23/18 14:42:23 (7 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/antispam/inc/lib.dc.antispam.php
r3731 r3781 73 73 if (($count = self::countSpam($core)) > 0) { 74 74 $str = ($count > 1) ? __('(including %d spam comments)') : __('(including %d spam comment)'); 75 $icons['comments'][0] .= '</span></a> <br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span >' .75 $icons['comments'][0] .= '</span></a> <br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' . 76 76 sprintf($str, $count); 77 77 } … … 82 82 if (($count = self::countSpam($core)) > 0) { 83 83 $str = ($count > 1) ? __('(including %d spam comments)') : __('(including %d spam comment)'); 84 return '</span></a> <br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span >' .84 return '</span></a> <br /><a href="' . $core->adminurl->get('admin.comments', array('status' => '-2')) . '"><span class="db-icon-title-spam">' . 85 85 sprintf($str, $count); 86 86 } else { 87 87 return ''; 88 88 } 89 } 90 91 public static function dashboardHeaders() 92 { 93 return dcPage::jsLoad(urldecode(dcPage::getPF('antispam/js/dashboard.js'))); 89 94 } 90 95
Note: See TracChangeset
for help on using the changeset viewer.