diff --git a/lessc.inc.php b/lessc.inc.php index 37988952..92a3c912 100644 --- a/lessc.inc.php +++ b/lessc.inc.php @@ -662,7 +662,7 @@ protected function zipSetArgs($args, $orderedValues, $keywordValues) { // check for a rest $last = end($args); - if ($last[0] == "rest") { + if (is_array($last) && isset($last[0]) && $last[0] == "rest") { $rest = array_slice($orderedValues, count($args) - 1); $this->set($last[1], $this->reduce(array("list", " ", $rest))); } @@ -746,7 +746,7 @@ protected function compileProp($prop, $block, $out) { if ($suffix !== null && $subProp[0] == "assign" && is_string($subProp[1]) && - $subProp[1]{0} != $this->vPrefix + $subProp[1][0] != $this->vPrefix ) { $subProp[2] = array( 'list', ' ', @@ -1963,7 +1963,7 @@ protected function injectVariables($args) { $this->pushEnv(); $parser = new lessc_parser($this, __METHOD__); foreach ($args as $name => $strValue) { - if ($name{0} !== '@') { + if ($name[0] !== '@') { $name = '@' . $name; } $parser->count = 0; @@ -2624,7 +2624,7 @@ protected function parseChunk() { $hidden = true; if (!isset($block->args)) { foreach ($block->tags as $tag) { - if (!is_string($tag) || $tag{0} != $this->lessc->mPrefix) { + if (!is_string($tag) || $tag[0] != $this->lessc->mPrefix) { $hidden = false; break; } @@ -2678,7 +2678,7 @@ protected function isDirective($dirname, $directives) { protected function fixTags($tags) { // move @ tags out of variable namespace foreach ($tags as &$tag) { - if ($tag{0} == $this->lessc->vPrefix) + if ($tag[0] == $this->lessc->vPrefix) $tag[0] = $this->lessc->mPrefix; } return $tags;