Minor comments changes
This commit is contained in:
parent
cbbc2407ba
commit
ee26ad3354
1 changed files with 7 additions and 3 deletions
10
index.php
10
index.php
|
@ -80,15 +80,17 @@ function getAlbumPreview($dir)
|
||||||
|
|
||||||
$scriptUrlPath = $_SERVER["SCRIPT_NAME"];
|
$scriptUrlPath = $_SERVER["SCRIPT_NAME"];
|
||||||
|
|
||||||
// if url == http://localhost/photos/index/toto/titi, path_info == /toto/titi
|
// if url == http://localhost/photos/index.php/toto/titi, path_info == /toto/titi
|
||||||
// if url == http://localhost/photos/index, path_info is not set
|
// if url == http://localhost/photos/index.php, path_info is not set
|
||||||
// if url == http://localhost/photos/, path_info is not set
|
// if url == http://localhost/photos/, path_info is not set
|
||||||
// if path_info is not set, we are at top level, so we redirect to /photos/index/
|
// if path_info is not set, we are at top level, so we redirect to /photos/index.php/
|
||||||
if (! isset($_SERVER["PATH_INFO"])) {
|
if (! isset($_SERVER["PATH_INFO"])) {
|
||||||
header("Location: $scriptUrlPath/");
|
header("Location: $scriptUrlPath/");
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# shortPath is the simple path to the image
|
||||||
|
# /index.php/toto/titi => shortPath == /toto/titi
|
||||||
$shortPath = $_SERVER["PATH_INFO"];
|
$shortPath = $_SERVER["PATH_INFO"];
|
||||||
if ($shortPath == '/') $shortPath = '';
|
if ($shortPath == '/') $shortPath = '';
|
||||||
// extra security check to avoid /photos/index/../.. like urls, maybe useless but..
|
// extra security check to avoid /photos/index/../.. like urls, maybe useless but..
|
||||||
|
@ -98,6 +100,8 @@ $folders = array();
|
||||||
$imageFiles = array();
|
$imageFiles = array();
|
||||||
$otherFiles = array();
|
$otherFiles = array();
|
||||||
|
|
||||||
|
# realDir is the directory in filesystem
|
||||||
|
# seen from current script directory
|
||||||
$realDir = IMAGES_DIR.$shortPath;
|
$realDir = IMAGES_DIR.$shortPath;
|
||||||
|
|
||||||
if (! is_dir($realDir)) {
|
if (! is_dir($realDir)) {
|
||||||
|
|
Loading…
Reference in a new issue