mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
Fixed wrong variable-name.
This commit is contained in:
parent
acb94a0a85
commit
70f90e9708
1 changed files with 1 additions and 1 deletions
|
|
@ -75,7 +75,7 @@ $share = $server->getShare('test');
|
||||||
$content = $share->dir('test');
|
$content = $share->dir('test');
|
||||||
|
|
||||||
foreach ($content as $info) {
|
foreach ($content as $info) {
|
||||||
echo $name->getName() . "\n";
|
echo $info->getName() . "\n";
|
||||||
echo "\tsize :" . $info->getSize() . "\n";
|
echo "\tsize :" . $info->getSize() . "\n";
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue