mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 10:37:30 -07:00
Small for cycle bugfix.
This commit is contained in:
parent
72eb538a0a
commit
d40af070ae
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ if ($search_imagick) {
|
|||
$paths = explode(' ', $retval);
|
||||
|
||||
if (is_array($paths)) {
|
||||
for ($i = 0; $iMax = count($paths); $i < $iMax; $i++) {
|
||||
for ($i = 0, $iMax = count($paths); $i < $iMax; $i++) {
|
||||
$path = basename($paths[$i]);
|
||||
|
||||
if ($path == 'convert') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue