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:
authorMichal Čihař <mcihar@novell.com>2010-07-26 18:44:47 +0400
committerMichal Čihař <mcihar@novell.com>2010-07-26 18:44:47 +0400
commitf700a73c81668adcc59d0ccc24ca89ab87bd3663 (patch)
tree83856421cf76679c307830852783b9fd76c7cfdb /themes.php
parentebc3f1b3c6a8966fbaee4f6880319d7920ec31dd (diff)
No need for require_once in these files.
Diffstat (limited to 'themes.php')
-rw-r--r--themes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/themes.php b/themes.php
index a996030f46..e58933fa4c 100644
--- a/themes.php
+++ b/themes.php
@@ -8,13 +8,13 @@
/**
* get some globals
*/
-require_once './libraries/common.inc.php';
+require './libraries/common.inc.php';
/* Theme Select */
$path_to_themes = $cfg['ThemePath'] . '/';
/* set language and charset */
-require_once './libraries/header_http.inc.php';
+require './libraries/header_http.inc.php';
/* HTML header */
$page_title = 'phpMyAdmin - ' . __('Theme / Style');