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
|
@@ 204-208 (lines=5) @@
|
| 201 |
|
$initial_slashes = false; |
| 202 |
|
} |
| 203 |
|
|
| 204 |
|
if (($initial_slashes) |
| 205 |
|
&& (strpos($path, '//') === 0) |
| 206 |
|
&& (strpos($path, '///') === false)) { |
| 207 |
|
$initial_slashes = 2; |
| 208 |
|
} |
| 209 |
|
|
| 210 |
|
$initial_slashes = (int) $initial_slashes; |
| 211 |
|
|