Another try to show all errors.
Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
diff --git a/projectPages/specfile/index.php b/projectPages/specfile/index.php
index dfab96b..a7e67b6 100644
--- a/projectPages/specfile/index.php
+++ b/projectPages/specfile/index.php
@@ -1,9 +1,14 @@
+<?php
+ini_set('display_startup_errors',1);
+ini_set('display_errors',1);
+error_reporting(-1);
+?>
<?php
$pageTitle = "Linux Tools - RPM integration";
$pageKeywords = "linux, eclipse, downloads";
$pageAuthor = "Alexander Kurtakov";
-# Paste your HTML content between the EOHTML markers!
+// Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="midcolumn">
@@ -42,7 +47,6 @@
EOHTML;
-
-# Generate the web page
+// Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>