Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Kadyan <hi@znck.me>2015-03-06 20:43:21 +0300
committerRahul Kadyan <hi@znck.me>2015-03-06 21:07:35 +0300
commit4d308ba364af3645d9db5bd46689ba0e79394c75 (patch)
treed79bf48515ab9be730013a24ab8ec560974e296a /show_config_errors.php
parentcb6458763198d55888fcc5c7010670dd5d85d9a4 (diff)
Remove unneeded closing tags
Closing tags at the end of file are not mandatory. It is often suggested to omit to closing tags at the end of file to prevent unwanted effects as PHP will start output buffering if there is any character after closing tag. Reference: http://php.net/manual/en/language.basic-syntax.phptags.php Signed-off-by: Rahul Kadyan <hi@znck.me>
Diffstat (limited to 'show_config_errors.php')
-rw-r--r--show_config_errors.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/show_config_errors.php b/show_config_errors.php
index 0d0cdf4456..8cd1de5efa 100644
--- a/show_config_errors.php
+++ b/show_config_errors.php
@@ -37,4 +37,3 @@ error_reporting(E_ALL);
if (is_readable(CONFIG_FILE)) {
include CONFIG_FILE;
}
-?>