summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-12-22 01:58:55 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2011-12-22 01:58:55 -0800
commit4735a9bf59c7428c96f5b6ad769ad11d4d7a618f (patch)
treedc0f09e9b72414f19f6b01cd50e7020004711d29 /modules
parent9ae311baa0149c1c2698c6cc7a182cf3c60e79f8 (diff)
downloadbrdo-4735a9bf59c7428c96f5b6ad769ad11d4d7a618f.tar.gz
brdo-4735a9bf59c7428c96f5b6ad769ad11d4d7a618f.tar.bz2
Issue #1345480 by chris.leversuch, rbayliss: Fixed node_load() does not document FALSE return value.
Diffstat (limited to 'modules')
-rw-r--r--modules/node/node.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index 51ec8c306..12e79c75f 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -919,7 +919,7 @@ function node_load_multiple($nids = array(), $conditions = array(), $reset = FAL
* Whether to reset the node_load_multiple cache.
*
* @return
- * A fully-populated node object.
+ * A fully-populated node object, or FALSE if the node is not found.
*/
function node_load($nid = NULL, $vid = NULL, $reset = FALSE) {
$nids = (isset($nid) ? array($nid) : array());