diff --git a/info.php b/info.php index fe156b0..affb236 100755 --- a/info.php +++ b/info.php @@ -7,17 +7,18 @@
' . htmlentities($column) . " | \n"; } @@ -40,7 +41,9 @@ array_shift($matches); - if($matches[0] != 'www-data') { + if (count($matches) == 0) continue; + + if($matches[0] != 'http') { continue; }
---|