Changeset 48830 in spip-zone for _plugins_/less-css/trunk/lessphp/lessc.inc.php
- Timestamp:
- Jun 16, 2011, 10:20:07 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/less-css/trunk/lessphp/lessc.inc.php
r42069 r48830 163 163 $full = $this->importDir.$url; 164 164 if (file_exists($file = $full) || file_exists($file = $full.'.less')) { 165 $loaded = $this->removeComments(ltrim(file_get_contents($file).";"));165 $loaded = ltrim($this->removeComments(file_get_contents($file).";")); 166 166 $this->buffer = substr($this->buffer, 0, $this->count).$loaded.substr($this->buffer, $this->count); 167 167 return true;
Note: See TracChangeset
for help on using the changeset viewer.