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

github.com/erikdubbelboer/phpRedisAdmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authord1rk <d1rk@gmx.de>2012-11-22 16:59:20 +0400
committerd1rk <d1rk@gmx.de>2012-11-22 16:59:59 +0400
commitbfc7d91b582e0673e46188530092fd649513431a (patch)
tree32183eb93ea4b7879f29bbb51949a262ab230bf1 /index.php
parentc117ebe4a12579b8d846c810c04c84d10d57e00c (diff)
move all include files to subfolder /includes
Diffstat (limited to 'index.php')
-rw-r--r--index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.php b/index.php
index 9300cc3..e0d5068 100644
--- a/index.php
+++ b/index.php
@@ -1,6 +1,6 @@
<?php
-require_once 'common.inc.php';
+require_once 'includes/common.inc.php';
@@ -113,7 +113,7 @@ function print_namespace($item, $name, $fullkey, $islast) {
</li>
<?php
}
-
+
// Does this namespace also contain subkeys?
if (count($item) > 0) {
?>
@@ -149,7 +149,7 @@ function print_namespace($item, $name, $fullkey, $islast) {
$page['css'][] = 'index';
$page['js'][] = 'index';
-require 'header.inc.php';
+require 'includes/header.inc.php';
?>
<div id="sidebar">
@@ -194,6 +194,6 @@ require 'header.inc.php';
</div><!-- #sidebar -->
<?php
-require 'footer.inc.php';
+require 'includes/footer.inc.php';
?>