function media_gallery_mg_node_load in Media Gallery 7.2
Same name and namespace in other branches
- 7 media_gallery.module \media_gallery_mg_node_load()
Load a node object from the database.
Parameters
$nid: The node ID.
$nid2: The same as $nid. Unused.
Return value
A fully-populated node object, or FALSE if the node is not found.
See also
File
- ./
media_gallery.module, line 154
Code
function media_gallery_mg_node_load($nid, $nid2 = NULL) {
return node_load($nid);
}