mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 21:21:27 +00:00
do not access empty variable
This commit is contained in:
parent
d5a3486e02
commit
f9fa8f0b70
|
@ -46,7 +46,7 @@ class SeedDMS_View_ObjectCheck extends SeedDMS_Blue_Style {
|
||||||
for ($i = 1; $i < count($tmppath); $i++) {
|
for ($i = 1; $i < count($tmppath); $i++) {
|
||||||
print "/".htmlspecialchars($tmppath[$i]->getName());
|
print "/".htmlspecialchars($tmppath[$i]->getName());
|
||||||
}
|
}
|
||||||
print $foldername;
|
print $folder->getName();
|
||||||
print "</a></td>";
|
print "</a></td>";
|
||||||
|
|
||||||
$owner = $folder->getOwner();
|
$owner = $folder->getOwner();
|
||||||
|
|
|
@ -46,7 +46,7 @@ class SeedDMS_View_ObjectCheck extends SeedDMS_Bootstrap_Style {
|
||||||
for ($i = 1; $i < count($tmppath); $i++) {
|
for ($i = 1; $i < count($tmppath); $i++) {
|
||||||
print "/".htmlspecialchars($tmppath[$i]->getName());
|
print "/".htmlspecialchars($tmppath[$i]->getName());
|
||||||
}
|
}
|
||||||
print $foldername;
|
print $folder->getName();
|
||||||
print "</a></td>";
|
print "</a></td>";
|
||||||
|
|
||||||
$owner = $folder->getOwner();
|
$owner = $folder->getOwner();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user