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 /edit.php
parentc117ebe4a12579b8d846c810c04c84d10d57e00c (diff)
move all include files to subfolder /includes
Diffstat (limited to 'edit.php')
-rw-r--r--edit.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/edit.php b/edit.php
index e6b5eec..357a368 100644
--- a/edit.php
+++ b/edit.php
@@ -1,6 +1,6 @@
<?php
-require_once 'common.inc.php';
+require_once 'includes/common.inc.php';
@@ -84,7 +84,7 @@ if (isset($_POST['type'], $_POST['key'], $_POST['value'])) {
// Refresh the top so the key tree is updated.
- require 'header.inc.php';
+ require 'includes/header.inc.php';
?>
<script>
@@ -92,7 +92,7 @@ if (isset($_POST['type'], $_POST['key'], $_POST['value'])) {
</script>
<?php
- require 'footer.inc.php';
+ require 'includes/footer.inc.php';
die;
}
@@ -130,7 +130,7 @@ if ($edit) {
$page['css'][] = 'frame';
$page['js'][] = 'frame';
-require 'header.inc.php';
+require 'includes/header.inc.php';
?>
<h2><?php echo $edit ? 'Edit' : 'Add'?></h2>
@@ -181,6 +181,6 @@ require 'header.inc.php';
</form>
<?php
-require 'footer.inc.php';
+require 'includes/footer.inc.php';
?>