node_revision_list
- Versions
- 4.6 – 7
node_revision_list($node)
Return a list of all the existing revision numbers.
Code
modules/node.module, line 1101
<?php
function node_revision_list($node) {
if (is_array($node->revisions)) {
return array_keys($node->revisions);
}
else {
return array();
}
}
?>Login or register to post comments 