diff options
author | 2010-09-15 18:40:24 +0300 | |
---|---|---|
committer | 2010-09-15 18:40:24 +0300 | |
commit | 77f2ae513594f6ea8f10c24425d7ddc7266da47c (patch) | |
tree | 9a851d1befaedf9a5d8f6d61428f4db2fa7de7b4 /archives/planet/index.php | |
parent | Copy templates/common/ files inside ${BASE_DIR} due to permissions (diff) | |
download | planet-77f2ae513594f6ea8f10c24425d7ddc7266da47c.tar.gz planet-77f2ae513594f6ea8f10c24425d7ddc7266da47c.tar.bz2 planet-77f2ae513594f6ea8f10c24425d7ddc7266da47c.zip |
Apply the archives fix to universe too, small fix in the path so the
archive files are actually shown. Patch by my brother
Diffstat (limited to 'archives/planet/index.php')
-rw-r--r-- | archives/planet/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archives/planet/index.php b/archives/planet/index.php index a0e7d38..b3c190b 100644 --- a/archives/planet/index.php +++ b/archives/planet/index.php @@ -65,7 +65,7 @@ $cscan = scandir('./' . $curdir, 1); foreach($cscan as $filename) { if ( $filename == "." || $filename == ".." ) continue; - echo "<li> <a href='$filename'>$filename</a></li>\n"; + echo "<li> <a href='$curdir/$filename'>$filename</a></li>\n"; } } echo "</ul>"; |