diff options
author | Alex Bilbie <alex@alexbilbie.com> | 2012-09-07 10:26:56 +0200 |
---|---|---|
committer | Alex Bilbie <alex@alexbilbie.com> | 2012-09-07 10:26:56 +0200 |
commit | 38cb0df9f54eb69f83cd1832d196554b92c881e1 (patch) | |
tree | 902d062fd4a0cdbe73d40d0d8f5d56dff33bf0e4 /user_guide_src/source/libraries | |
parent | 68b82e7ad682c40de22a9792ffe429d27cf42cf0 (diff) | |
parent | f3fddf6e0f4b0b0976c433c139326bdcd45d2da0 (diff) |
Merge pull request #1720 from appleboy/doc
fix issue #1719 and update ip address length on captcha helper
Diffstat (limited to 'user_guide_src/source/libraries')
-rw-r--r-- | user_guide_src/source/libraries/trackback.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide_src/source/libraries/trackback.rst b/user_guide_src/source/libraries/trackback.rst index 07b2b2177..f9e0df882 100644 --- a/user_guide_src/source/libraries/trackback.rst +++ b/user_guide_src/source/libraries/trackback.rst @@ -114,7 +114,7 @@ store them. Here is a basic prototype for such a table:: excerpt text NOT NULL, blog_name varchar(100) NOT NULL, tb_date int(10) NOT NULL, - ip_address varchar(16) NOT NULL, + ip_address varchar(45) NOT NULL, PRIMARY KEY `tb_id` (`tb_id`), KEY `entry_id` (`entry_id`) ); |