diff --git a/backend/views/report/index.php b/backend/views/report/index.php index c2c8e28..ee9abab 100644 --- a/backend/views/report/index.php +++ b/backend/views/report/index.php @@ -44,7 +44,6 @@ if (isset($_SESSION['access_token']) && $_SESSION['access_token']) { // Вывод ответа. printResults($response); - printDataTable($response); } else { @@ -109,34 +108,5 @@ function printResults($reports) { } } -function printDataTable(&$results) { - if (count($results->getRows()) > 0) { - $table .= '
' . $header->name . ' | '; - } - $table .= '
---|
' - . htmlspecialchars($cell, ENT_NOQUOTES) - . ' | '; - } - $table .= '
No Results Found.
'; - } - print $table; -} -- libgit2 0.21.4