Browse Source

Fixed return type of Eloquent delete method.

Taylor Otwell 13 years ago
parent
commit
e452bbdf3a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/db/eloquent.php

+ 1 - 1
system/db/eloquent.php

@@ -366,7 +366,7 @@ abstract class Eloquent {
 		// -----------------------------------------------------
 		if ($this->exists)
 		{
-			return Query::table(static::table(get_class($this)))->delete($this->id) == 1;
+			return Query::table(static::table(get_class($this)))->delete($this->id);
 		}
 
 		return $this->query->delete($id);