Skip to content

Commit 604d977

Browse files
markwumr-russ
authored andcommitted
Fixed another error. It should be $file here, instead of $filename
Conflicts: PHPCtags.class.php
1 parent 0394c9a commit 604d977

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PHPCtags.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,9 +456,9 @@ private function process($file)
456456
}
457457
} else {
458458
try {
459-
$this->process_single_file($filename);
459+
$this->process_single_file($file);
460460
} catch(Exception $e) {
461-
echo "PHPParser: {$e->getMessage()} - {$filename}".PHP_EOL;
461+
echo "PHPParser: {$e->getMessage()} - {$file}".PHP_EOL;
462462
}
463463
}
464464
}

0 commit comments

Comments
 (0)