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/user | |
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/user')
-rw-r--r-- | modules/user/user.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/user.install b/modules/user/user.install index f545087cb..3522cc91f 100644 --- a/modules/user/user.install +++ b/modules/user/user.install @@ -51,7 +51,7 @@ function user_schema() { 'type' => 'int', 'not null' => TRUE, 'default' => 0, - 'description' => t("User's {user}.uid."), + 'description' => t("User's {users}.uid."), ), 'authname' => array( 'type' => 'varchar', @@ -266,7 +266,7 @@ function user_schema() { 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, - 'description' => t('Primary Key: {user}.uid for user.'), + 'description' => t('Primary Key: {users}.uid for user.'), ), 'rid' => array( 'type' => 'int', |