aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2006-07-18 21:43:29 +0000
committerrub <rub@piwigo.org>2006-07-18 21:43:29 +0000
commit4593260c97a4256fb017fd7dd813f02956c66da8 (patch)
treeef7bf3808cc16274a06e4900827a17966c217924 /include
parentf004fd47fd4d916065297cdab1adfe972694f646 (diff)
Resolved Issue ID 0000474 (Step 1):
o Rename index.htm into index.php o Add index.php on all sub-directories o Use an uniform source code of index.php (like /include/index.php) (/index.php is of course not changed) Merge BSF r1480:1481 into branch-1_6 git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1482 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include')
-rw-r--r--include/index.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/index.php b/include/index.php
index 0f1d97083..71fa63d95 100644
--- a/include/index.php
+++ b/include/index.php
@@ -25,9 +25,11 @@
// | USA. |
// +-----------------------------------------------------------------------+
+// recursive call of index.php
+
$url = '../index.php';
-header( 'Request-URI: '.$url );
-header( 'Content-Location: '.$url );
+header( 'Request-URI: '.$url );
+header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>