Skip to content

Commit

Permalink
Fix space between function + parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jan 18, 2013
1 parent 689745d commit 18e282f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Model/Model.php
Expand Up @@ -977,7 +977,7 @@ protected function _createLinks() {
$plugin = null;

if (is_numeric($assoc)) {
unset ($this->{$type}[$assoc]);
unset($this->{$type}[$assoc]);
$assoc = $value;
$value = array();

Expand Down Expand Up @@ -1153,7 +1153,7 @@ public function set($one, $two = null) {

foreach ($fieldSet as $fieldName => $fieldValue) {
if (isset($this->validationErrors[$fieldName])) {
unset ($this->validationErrors[$fieldName]);
unset($this->validationErrors[$fieldName]);
}

if ($modelName === $this->alias) {
Expand Down

0 comments on commit 18e282f

Please sign in to comment.