php/elFinderVolumeFTP.class.php 1 location
|
@@ 544-548 (lines=5) @@
|
| 541 |
|
$initial_slashes = false; |
| 542 |
|
} |
| 543 |
|
|
| 544 |
|
if (($initial_slashes) |
| 545 |
|
&& (strpos($path, '//') === 0) |
| 546 |
|
&& (strpos($path, '///') === false)) { |
| 547 |
|
$initial_slashes = 2; |
| 548 |
|
} |
| 549 |
|
|
| 550 |
|
$initial_slashes = (int) $initial_slashes; |
| 551 |
|
|
php/elFinderVolumeLocalFileSystem.class.php 1 location
|
@@ 214-218 (lines=5) @@
|
| 211 |
|
$initial_slashes = false; |
| 212 |
|
} |
| 213 |
|
|
| 214 |
|
if (($initial_slashes) |
| 215 |
|
&& (strpos($path, '//') === 0) |
| 216 |
|
&& (strpos($path, '///') === false)) { |
| 217 |
|
$initial_slashes = 2; |
| 218 |
|
} |
| 219 |
|
|
| 220 |
|
$initial_slashes = (int) $initial_slashes; |
| 221 |
|
|