nntmux/RequestIDLocal.php 1 location
|
@@ 85-90 (lines=6) @@
|
| 82 |
|
$this->_requestIdNotFound($this->_release['id'], ($this->_release['reqidstatus'] == self::REQID_UPROC ? self::REQID_NOLL : self::REQID_NONE)); |
| 83 |
|
} |
| 84 |
|
|
| 85 |
|
if ($this->echoOutput && $this->_show === 0) { |
| 86 |
|
$this->consoleTools->overWritePrimary( |
| 87 |
|
"Checked Releases: [" . number_format($checked) . "] " . |
| 88 |
|
$this->consoleTools->percentString(++$checked, $this->_totalReleases) |
| 89 |
|
); |
| 90 |
|
} |
| 91 |
|
|
| 92 |
|
} |
| 93 |
|
} |
nntmux/NameFixer.php 1 location
|
@@ 665-672 (lines=8) @@
|
| 662 |
|
echo $this->pdo->log->alternate(PHP_EOL . number_format($this->checked) . ' files processed.' . PHP_EOL); |
| 663 |
|
} |
| 664 |
|
|
| 665 |
|
if ($show === 2) { |
| 666 |
|
$this->consoletools->overWritePrimary( |
| 667 |
|
'Renamed Releases: [' . |
| 668 |
|
number_format($this->fixed) . |
| 669 |
|
'] ' . |
| 670 |
|
$this->consoletools->percentString($this->checked, $this->_totalReleases) |
| 671 |
|
); |
| 672 |
|
} |
| 673 |
|
} |
| 674 |
|
|
| 675 |
|
/** |