
Re: How To Don't Discount Posts I Delete To The Users?
I had no time until now. I got the solution

, thanks
MG.
If anybody want it:
In /modcp.php
FIND (All without '///'):
///$count_sql = array();
///while( $row = $db->sql_fetchrow($result) )
///{
/// $count_sql[] = "UPDATE ". USERS_TABLE ." SET user_posts = user_posts - ". $row['posts'] ."
/// WHERE user_id = ". $row['poster_id'];
///}
///$db->sql_freeresult($result);
///if( sizeof($count_sql) )
///{
/// for($i = 0; $i < sizeof($count_sql); $i++)
/// {
/// if( !$db->sql_query($count_sql[$i]) )
/// {
/// message_die(GENERAL_ERROR, 'could not update user post count information.', '', __LINE__, __FILE__, $sql);
/// }
/// }
///}
Comment al lines like above. That is

.