| Versionen | |
|---|---|
| drupal6 | _comment_load($cid) |
Load the entire comment by cid.
$cid The identifying comment id.
The comment object.
modules/
<?php
function _comment_load($cid) {
return db_fetch_object(db_query('SELECT * FROM {comments} WHERE cid = %d', $cid));
}
?>
Kommentare
Kommentar hinzufügen