projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location
|
@@ 2910-2916 (lines=7) @@
|
2907 |
|
|
2908 |
|
protected function string(&$out) { |
2909 |
|
$s = $this->seek(); |
2910 |
|
if ($this->literal('"', false)) { |
2911 |
|
$delim = '"'; |
2912 |
|
} elseif ($this->literal("'", false)) { |
2913 |
|
$delim = "'"; |
2914 |
|
} else { |
2915 |
|
return false; |
2916 |
|
} |
2917 |
|
|
2918 |
|
$content = array(); |
2919 |
|
|
projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location
|
@@ 3443-3449 (lines=7) @@
|
3440 |
|
|
3441 |
|
protected function string(&$out) { |
3442 |
|
$s = $this->seek(); |
3443 |
|
if ($this->literal('"', false)) { |
3444 |
|
$delim = '"'; |
3445 |
|
} elseif ($this->literal("'", false)) { |
3446 |
|
$delim = "'"; |
3447 |
|
} else { |
3448 |
|
return false; |
3449 |
|
} |
3450 |
|
|
3451 |
|
$content = array(); |
3452 |
|
$oldWhite = $this->eatWhiteDefault; |