Removing more if() blocks

Silencing Controller task in all()
This commit is contained in:
mark_story 2009-06-04 23:42:06 -04:00
parent 7cf7a0440c
commit 0099c8a428

View file

@ -159,6 +159,7 @@ class ViewTask extends Shell {
**/
function all() {
$actions = $this->scaffoldActions;
$this->Controller->interactive = false;
$tables = $this->Controller->listAll($this->connection, false);
$this->interactive = false;
foreach ($tables as $table) {
@ -167,9 +168,7 @@ class ViewTask extends Shell {
$this->controllerPath = Inflector::underscore($this->controllerName);
if (App::import('Model', $model)) {
$vars = $this->__loadController();
if ($vars) {
$this->bakeActions($actions, $vars);
}
$this->bakeActions($actions, $vars);
}
}
}