Browse Source

ADmads comments

dogmatic69 13 years ago
parent
commit
f5a8eb6bbf
2 changed files with 2 additions and 2 deletions
  1. 1 1
      lib/Cake/Console/Command/ApiShell.php
  2. 1 1
      lib/Cake/Model/Datasource/DboSource.php

+ 1 - 1
lib/Cake/Console/Command/ApiShell.php

@@ -77,7 +77,7 @@ class ApiShell extends AppShell {
 		if ($count > 1) {
 			$file = Inflector::underscore($this->args[1]);
 			$class = Inflector::camelize($this->args[1]);
-		} elseif($count) {
+		} elseif ($count) {
 			$file = $type;
 			$class = Inflector::camelize($type);
 		}

+ 1 - 1
lib/Cake/Model/Datasource/DboSource.php

@@ -1053,7 +1053,7 @@ class DboSource extends DataSource {
 
 		if ($model->recursive == -1) {
 			$_associations = array();
-		} elseif (!$model->recursive) {
+		} elseif (!$model->recursive === 0) {
 			unset($_associations[2], $_associations[3]);
 		}