mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-19 21:03:54 -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);
|
$paths = explode(' ', $retval);
|
||||||
|
|
||||||
if (is_array($paths)) {
|
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]);
|
$path = basename($paths[$i]);
|
||||||
|
|
||||||
if ($path == 'convert') {
|
if ($path == 'convert') {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue