XF 2.1 corrupted or altered files / how to remove warning?

I had to edit the member.php file in order to increase the members overview list from 5 to 8
Is there another way to increase it?


195057

So nothing special but this message keeps appearing yes sure I can ignore it but is there any way to remove it and keep the change?
 
Thanks @Brogan for clearing that up.


This is the code i changed, so the 8 was previously 5
Maybe make it a core feature? If there is enough interest?

Code:
            foreach ($memberStats AS $key => $memberStat)
            {
                $results = $memberStat->getResults(true);

                $count = 0;

                foreach ($results AS $userId => $value)
                {
                    if ($count == 8)
                    {
                        // we have enough for this stat
                        break;
                    }
 
Top Bottom