[Plugin: Top Commentators Widget] E-mail filter problem
-
// This prepares e-mails for filtering if($options['filterEmail'] != "") { $filterEmail = trim($options['filterEmail']); $filterEmail = explode(",", $filterEmail); for($i=0; $i<count($filterUrl); $i++) { $new_emails .= " AND comment_author_email NOT LIKE '%" . trim($filterEmail[$i]) . "%'"; } $filterEmail = $new_emails; }this does not work
for($i=0; $i<count($filterUrl); $i++) {
must be
for($i=0; $i<count($filterEmail); $i++) {http://wordpress.org/extend/plugins/top-commentators-widget/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘[Plugin: Top Commentators Widget] E-mail filter problem’ is closed to new replies.