diff options
author | rvelices <rv-github@modusoptimus.com> | 2007-03-15 04:20:30 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2007-03-15 04:20:30 +0000 |
commit | d98c48bc6e0e5ab7de21e5252889270ecdea6c89 (patch) | |
tree | fb2c4bc7d7c719464df3bff3800d7b3741c61848 | |
parent | b654fdac5699b0ad3722444a69c027f5c9f01a1b (diff) |
add index.php in plugins directory and subdirectories
git-svn-id: http://piwigo.org/svn/trunk@1907 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | plugins/admin_advices/index.php | 7 | ||||
-rw-r--r-- | plugins/admin_multi_view/index.php | 7 | ||||
-rw-r--r-- | plugins/event_tracer/index.php | 7 | ||||
-rw-r--r-- | plugins/hello_world/index.php | 7 | ||||
-rw-r--r-- | plugins/index.php | 7 |
5 files changed, 35 insertions, 0 deletions
diff --git a/plugins/admin_advices/index.php b/plugins/admin_advices/index.php new file mode 100644 index 000000000..954048b5c --- /dev/null +++ b/plugins/admin_advices/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?>
\ No newline at end of file diff --git a/plugins/admin_multi_view/index.php b/plugins/admin_multi_view/index.php new file mode 100644 index 000000000..954048b5c --- /dev/null +++ b/plugins/admin_multi_view/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?>
\ No newline at end of file diff --git a/plugins/event_tracer/index.php b/plugins/event_tracer/index.php new file mode 100644 index 000000000..954048b5c --- /dev/null +++ b/plugins/event_tracer/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?>
\ No newline at end of file diff --git a/plugins/hello_world/index.php b/plugins/hello_world/index.php new file mode 100644 index 000000000..954048b5c --- /dev/null +++ b/plugins/hello_world/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?>
\ No newline at end of file diff --git a/plugins/index.php b/plugins/index.php new file mode 100644 index 000000000..bd3046574 --- /dev/null +++ b/plugins/index.php @@ -0,0 +1,7 @@ +<?php +$url = '../'; +header( 'Request-URI: '.$url ); +header( 'Content-Location: '.$url ); +header( 'Location: '.$url ); +exit(); +?>
\ No newline at end of file |