Add HTML5 features

This commit is contained in:
Romain Neutron
2012-05-30 16:34:28 +02:00
parent 63018a85cd
commit caf1e69370
33 changed files with 5780 additions and 299 deletions

View File

@@ -86,7 +86,7 @@ class module_console_systemConfigCheck extends Command
{
$hasError = false;
foreach ($constraints as $constraint) {
if ( ! $hasError && ! $this->processConstraint($constraint, $output)) {
if ( ! $this->processConstraint($constraint, $output)) {
$hasError = true;
}
}

4
lib/classes/module/console/taskrun.class.php Executable file → Normal file
View File

@@ -97,7 +97,9 @@ class module_console_taskrun extends Command
}
}
$logger = new Logger('Task logger');
$core = \bootstrap::getCore();
$logger = $core['monolog'];
if ($input->getOption('verbose')) {
$handler = new Handler\StreamHandler(fopen('php://stdout', 'a'));