This commit is contained in:
Miles Lott 2004-02-03 06:21:25 +00:00
parent 8c301efe44
commit ac1c6a1845

View File

@ -172,21 +172,37 @@ function verbosePerms( $in_Perms )
$sP; $sP;
if($in_Perms & 0x1000) // FIFO pipe if($in_Perms & 0x1000) // FIFO pipe
{
$sP = 'p'; $sP = 'p';
}
elseif($in_Perms & 0x2000) // Character special elseif($in_Perms & 0x2000) // Character special
{
$sP = 'c'; $sP = 'c';
}
elseif($in_Perms & 0x4000) // Directory elseif($in_Perms & 0x4000) // Directory
{
$sP = 'd'; $sP = 'd';
}
elseif($in_Perms & 0x6000) // Block special elseif($in_Perms & 0x6000) // Block special
{
$sP = 'b'; $sP = 'b';
}
elseif($in_Perms & 0x8000) // Regular elseif($in_Perms & 0x8000) // Regular
{
$sP = '-'; $sP = '-';
}
elseif($in_Perms & 0xA000) // Symbolic Link elseif($in_Perms & 0xA000) // Symbolic Link
{
$sP = 'l'; $sP = 'l';
}
elseif($in_Perms & 0xC000) // Socket elseif($in_Perms & 0xC000) // Socket
{
$sP = 's'; $sP = 's';
}
else // UNKNOWN else // UNKNOWN
{
$sP = 'u'; $sP = 'u';
}
// owner // owner
$sP .= (($in_Perms & 0x0100) ? 'r' : '-') . $sP .= (($in_Perms & 0x0100) ? 'r' : '-') .
@ -402,3 +418,4 @@ if ($run_by_webserver)
$setup_tpl->pparse('out','T_footer'); $setup_tpl->pparse('out','T_footer');
//echo "</body>\n</html>\n"; //echo "</body>\n</html>\n";
} }
?>