diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-04 14:33:07 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-04 14:33:07 +0000 |
commit | 91e980a27162ae618ec188c00f44c9abf0c708c5 (patch) | |
tree | 012938331b557524af888d13ccc1b2e60df70ca6 /modules/comment | |
parent | 75a6f4ded4a57281717263accb806ce8971aa732 (diff) | |
download | brdo-91e980a27162ae618ec188c00f44c9abf0c708c5.tar.gz brdo-91e980a27162ae618ec188c00f44c9abf0c708c5.tar.bz2 |
#187881 by mooffie: fix misnamed database table names in schema documentation
Diffstat (limited to 'modules/comment')
-rw-r--r-- | modules/comment/comment.install | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/comment/comment.install b/modules/comment/comment.install index 181b3f218..80fc82e23 100644 --- a/modules/comment/comment.install +++ b/modules/comment/comment.install @@ -73,7 +73,7 @@ function comment_schema() { 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {comment}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.'), + 'description' => t('The {comments}.cid to which this comment is a reply. If set to 0, this comment is not a reply to an existing comment.'), ), 'nid' => array( 'type' => 'int', @@ -85,7 +85,7 @@ function comment_schema() { 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The {user}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.'), + 'description' => t('The {users}.uid who authored the comment. If set to 0, this comment was created by an anonymous user.'), ), 'subject' => array( 'type' => 'varchar', @@ -138,7 +138,7 @@ function comment_schema() { 'type' => 'varchar', 'length' => 60, 'not null' => FALSE, - 'description' => t("The comment author's name. Uses {user}.name if the user is logged in, otherwise uses the value typed into the comment form."), + 'description' => t("The comment author's name. Uses {users}.name if the user is logged in, otherwise uses the value typed into the comment form."), ), 'mail' => array( 'type' => 'varchar', @@ -174,19 +174,19 @@ function comment_schema() { 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The Unix timestamp of the last comment that was posted within this node, from {comment}.timestamp.'), + 'description' => t('The Unix timestamp of the last comment that was posted within this node, from {comments}.timestamp.'), ), 'last_comment_name' => array( 'type' => 'varchar', 'length' => 60, 'not null' => FALSE, - 'description' => t('The name of the latest author to post a comment on this node, from {comment}.author.'), + 'description' => t('The name of the latest author to post a comment on this node, from {comments}.name.'), ), 'last_comment_uid' => array( 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t('The user ID of the latest author to post a comment on this node, from {comment}.uid.'), + 'description' => t('The user ID of the latest author to post a comment on this node, from {comments}.uid.'), ), 'comment_count' => array( 'type' => 'int', |