diff options
author | dedeibel | 2018-12-22 14:16:39 +0100 |
---|---|---|
committer | dedeibel | 2018-12-22 14:16:39 +0100 |
commit | b165d27cb95e764f119a0a212ec16a36f7b3281c (patch) | |
tree | 57837453f8be7133832e61d00bd0165e7a0d7804 /lib/less.php/Less.php | |
parent | e31bb476eedadfd264279b882ad5fdec55eeee16 (diff) |
Less.php fix php version problem with strpos wanting a string and nonempty needle value
Diffstat (limited to '')
-rw-r--r-- | lib/less.php/Less.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/less.php/Less.php b/lib/less.php/Less.php index ea69243..44cdffc 100644 --- a/lib/less.php/Less.php +++ b/lib/less.php/Less.php @@ -10331,7 +10331,7 @@ class Less_SourceMap_Generator extends Less_Configurable { $basePath = $this->getOption('sourceMapBasepath');
// "Trim" the 'sourceMapBasepath' from the output filename.
- if (strpos($filename, $basePath) === 0) {
+ if (! empty($basePath) && strpos($filename, (string) $basePath) === 0) {
$filename = substr($filename, strlen($basePath));
}
|