diff options
author | Erich Eckner <git@eckner.net> | 2016-07-14 20:13:52 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-07-14 20:13:52 +0200 |
commit | 4580e86e443ffe51e620d8bb91ac34fa68ea78dc (patch) | |
tree | d807123a8cd922a2b0fd1f32414c69ae9d8b7ec2 | |
parent | 463985b144412c7c14a35eca1584b116d90fb7ca (diff) | |
download | sourceMirror-4580e86e443ffe51e620d8bb91ac34fa68ea78dc.tar.xz |
add hint to real path in listing
-rw-r--r-- | mirror.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ $pfad = explode("/",substr($datei,strlen($datenWurzel))); array_walk($pfad,"myBaseDecode"); $pfad = implode("/",$pfad); - echo "<a href=\"/".$pfad."\">".$pfad."</a><br>\n"; + echo "<a href=\"file://".$datei."\">.</a> <a href=\"/".$pfad."\">".$pfad."</a><br>\n"; } } else { |