php/elFinderVolumeFTP.class.php 1 location
|
@@ 548-552 (lines=5) @@
|
| 545 |
|
$initial_slashes = false; |
| 546 |
|
} |
| 547 |
|
|
| 548 |
|
if (($initial_slashes) |
| 549 |
|
&& (strpos($path, '//') === 0) |
| 550 |
|
&& (strpos($path, '///') === false)) { |
| 551 |
|
$initial_slashes = 2; |
| 552 |
|
} |
| 553 |
|
|
| 554 |
|
$initial_slashes = (int) $initial_slashes; |
| 555 |
|
|
php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 272-276 (lines=5) @@
|
| 269 |
|
$initial_slashes = false; |
| 270 |
|
} |
| 271 |
|
|
| 272 |
|
if (($initial_slashes) |
| 273 |
|
&& (strpos($path, '//') === 0) |
| 274 |
|
&& (strpos($path, '///') === false)) { |
| 275 |
|
$initial_slashes = 2; |
| 276 |
|
} |
| 277 |
|
|
| 278 |
|
$initial_slashes = (int) $initial_slashes; |
| 279 |
|
|