Correction du probleme du lien voir. Fixes #690
This commit is contained in:
parent
11a12425b1
commit
6bad3e9495
|
@ -25,7 +25,6 @@
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
Original Author of file: Benjamin Sonntag, Remi
|
Original Author of file: Benjamin Sonntag, Remi
|
||||||
Purpose of file: Online file Browser of AlternC
|
Purpose of file: Online file Browser of AlternC
|
||||||
TODO : Voir ??? + Déplacer / Copier
|
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
require_once("../class/config.php");
|
require_once("../class/config.php");
|
||||||
|
|
|
@ -481,6 +481,8 @@ class m_bro {
|
||||||
// Is it in cache ?
|
// Is it in cache ?
|
||||||
if (substr($dir,0,1)=="/") $dir=substr($dir,1);
|
if (substr($dir,0,1)=="/") $dir=substr($dir,1);
|
||||||
if (substr($dir,-1)=="/") $dir=substr($dir,0,-1);
|
if (substr($dir,-1)=="/") $dir=substr($dir,0,-1);
|
||||||
|
$dir=str_replace("%2F", "/", urlencode($dir));
|
||||||
|
$name=urlencode($name);
|
||||||
if (!$this->cacheurl["d".$dir]) {
|
if (!$this->cacheurl["d".$dir]) {
|
||||||
// On parcours $dir en remontant les /
|
// On parcours $dir en remontant les /
|
||||||
$end=""; $beg=$dir; $tofind=true;
|
$end=""; $beg=$dir; $tofind=true;
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
alternc (0.9.6.4) stable; urgency=low
|
alternc (0.9.6.4) stable; urgency=low
|
||||||
|
|
||||||
|
* Fixed the 'view' link issues (no urlencode) (#690)
|
||||||
* Change "move" to "move to" (ergonomic) (#787)
|
* Change "move" to "move to" (ergonomic) (#787)
|
||||||
* Confirm file deletion in the browser (#659)
|
* Confirm file deletion in the browser (#659)
|
||||||
* fixes dns install of internal hosting domains (#1056)
|
* fixes dns install of internal hosting domains (#1056)
|
||||||
|
|
Loading…
Reference in New Issue