diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:45:56 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-06 13:45:56 +0000 |
commit | 77c85e329a489ac51e4b60a78f8e6c95657ffbaf (patch) | |
tree | 72df692382a722e93a62b09af5af7305fc20e0d5 /includes | |
parent | 22ffb8004bc0036b8e1447446e653ed32e4b67e3 (diff) | |
download | brdo-77c85e329a489ac51e4b60a78f8e6c95657ffbaf.tar.gz brdo-77c85e329a489ac51e4b60a78f8e6c95657ffbaf.tar.bz2 |
- Patch #932016 by fago, klausi: fixed entity_load() defaults
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index e626bb8f1..7195e985e 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -7034,7 +7034,7 @@ function entity_create_stub_entity($entity_type, $ids) { * @return * An array of entity objects indexed by their ids. */ -function entity_load($entity_type, $ids = array(), $conditions = array(), $reset = FALSE) { +function entity_load($entity_type, $ids = FALSE, $conditions = array(), $reset = FALSE) { if ($reset) { entity_get_controller($entity_type)->resetCache(); } |