Quote:
Originally Posted by PitchouneN64ngc
This is a very good hack but i've see a little bug in the code
Into the statistikadmin.php, you can see this into the code:
PHP Code:
$stat_set[WRITTENPOPST]=eregi_replace("[^0-9]", null, $stat_set[WRITTENPOST]);
$stat_set[WRITTENPO PST] is wrong 
|
all of those statements would be more efficient using...
PHP Code:
$stat_set['WRITTENPOST'] = preg_replace('#[^\d]#', null, $stat_set['WRITTENPOST']);