Recent Topics

1 May 27, 2005 19:51    

First post here, so hello everyone.

My feature request is that on the Anti-spam tab only the last 20 spammers be shown and the rest broken up into pagination or Show previous/next 20 or something. The reason I ask for this is that it takes quite a while now to open that tab, and there is really not much need for me to view the entire list at once because b2evo will tell me if a word or domain is already on the list when I attempt to add it.

Thank you.

2 May 28, 2005 11:35

To show only the first last 20th entries: open b2evocore\_function_antispam.php
Search for

$sql = "SELECT aspm_ID, aspm_string, aspm_source 
					FROM $tableantispam 
					ORDER BY aspm_string ASC";


Replace by

$sql = "SELECT aspm_ID, aspm_string, aspm_source 
					FROM $tableantispam 
					ORDER BY aspm_ID DESC
					LIMIT 20";

Adding pagination is a little more complex.

Hope it helps,

Slamp

3 May 31, 2005 13:22

This will be implemented in the next release (phoenix)


Form is loading...