1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 13:20:17 +02:00

Commented code should not be commited.

This commit is contained in:
Andrés Montañez 2014-10-11 14:54:45 -02:00
parent b8c23747f0
commit aaf92d5001

View File

@ -18,8 +18,10 @@ class TaskWithParameters extends AbstractTask
public function run()
{
//throw new Mage_Task_SkipException;
//return false;
return true;
if ($this->getParameter('booleanOption', false)) {
return true;
} else {
return false;
}
}
}