Browse Source

miner.php: ereg_replace is DEPRECATED so use preg_replace instead

nfactor-troky
Kano 12 years ago
parent
commit
84aa0d693b
  1. 2
      miner.php

2
miner.php

@ -267,7 +267,7 @@ function details($cmd, $list) @@ -267,7 +267,7 @@ function details($cmd, $list)
if ($item == 'STATUS')
continue;
$sectionname = ereg_replace('[0-9]', '', $item);
$sectionname = preg_replace('/\d/', '', $item);
if ($sectionname != $section)
{

Loading…
Cancel
Save