Skip to content

Commit

Permalink
corrected static calls
Browse files Browse the repository at this point in the history
  • Loading branch information
Axinet authored and everzet committed Jan 21, 2011
1 parent 305f167 commit 87cdde3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/task/lessCompileTask.class.php
Expand Up @@ -81,7 +81,7 @@ protected function execute($arguments = array(), $options = array())
unlink($cssFile);
$this->logSection(
'removed',
str_replace($less::getConfig()->getCssPaths(), '', $cssFile)
str_replace(sfLESS::getConfig()->getCssPaths(), '', $cssFile)
);
}
}
Expand All @@ -90,7 +90,7 @@ protected function execute($arguments = array(), $options = array())
// Outputs debug info
if (isset($options['debug']) && $options['debug'])
{
foreach ($less::getConfig()->getDebugInfo() as $key => $value)
foreach (sfLESS::getConfig()->getDebugInfo() as $key => $value)
{
$this->logSection('debug', sprintf("%s:\t%s", $key, $value), null, 'INFO');
}
Expand All @@ -114,7 +114,7 @@ protected function execute($arguments = array(), $options = array())
{
$this->logSection(
'compiled',
str_replace($less::getConfig()->getLessPaths(), '', $lessFile),
str_replace(sfLESS::getConfig()->getLessPaths(), '', $lessFile),
null,
'COMMAND'
);
Expand Down

0 comments on commit 87cdde3

Please sign in to comment.