Index: /trunk/htdocs/coverager/index.php
===================================================================
--- /trunk/htdocs/coverager/index.php	(revision 393)
+++ /trunk/htdocs/coverager/index.php	(revision 1077)
@@ -1,3 +1,3 @@
 <?php
 
-include("coverager.php");
+include "coverager.php";
Index: /trunk/htdocs/coverager/common.php
===================================================================
--- /trunk/htdocs/coverager/common.php	(revision 1053)
+++ /trunk/htdocs/coverager/common.php	(revision 1077)
@@ -3,5 +3,5 @@
 require_once "../common/common.php";
 
-include(get_language_file("coverager"));
+include get_language_file("coverager");
 $module = "coverager";
 
Index: /trunk/htdocs/coverager/coverager.php
===================================================================
--- /trunk/htdocs/coverager/coverager.php	(revision 1053)
+++ /trunk/htdocs/coverager/coverager.php	(revision 1077)
@@ -1,5 +1,5 @@
 <?php
 
-include("./common.php");
+include "./common.php";
 
 class XcacheCoverageViewer
@@ -108,5 +108,5 @@
 
 		global $config;
-		include("coverager.tpl.php");
+		include "coverager.tpl.php";
 	}
 
Index: /trunk/htdocs/common/common.php
===================================================================
--- /trunk/htdocs/common/common.php	(revision 1070)
+++ /trunk/htdocs/common/common.php	(revision 1077)
@@ -46,4 +46,5 @@
 				"http://xcache.lighttpd.net/" => "XCache",
 				"http://xcache.lighttpd.net/wiki/DocTOC" => _("Document"),
+				"http://xcache.lighttpd.net/wiki/PhpIni" => _("INI Setting"),
 				"http://xcache.lighttpd.net/wiki/GetSupport" => _("Get Support"),
 				"https://groups.google.com/group/xcache/" => _("Discusson"),
@@ -245,16 +246,16 @@
 $config = array();
 if (file_exists("./config.default.php")) {
-	include("./config.default.php");
-}
-include("../config.default.php");
+	include "./config.default.php";
+}
+include "../config.default.php";
 if (file_exists("../config.php")) {
-	include("../config.php");
+	include "../config.php";
 }
 if (file_exists("./config.php")) {
-	include("./config.php");
+	include "./config.php";
 }
 
 $strings = array();
-include(get_language_file("../common/common"));
+include get_language_file("../common/common");
 
 $modules = array();
