diff options
author | Friendika <info@friendika.com> | 2010-12-20 00:27:00 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-20 00:27:00 -0800 |
commit | 878067101f09b20014fab4c7f1265656528575d8 (patch) | |
tree | 4362be3bf61a16acbf76b6a98c65520fd2ef9c09 /update.php | |
parent | 2632c2313069ff418737ecf0f8f6885f02d3e5b1 (diff) | |
download | volse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.tar.gz volse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.tar.bz2 volse-hubzilla-878067101f09b20014fab4c7f1265656528575d8.zip |
block connection/friend request spam
Diffstat (limited to 'update.php')
-rw-r--r-- | update.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/update.php b/update.php index 382c83e5a..5b4d99603 100644 --- a/update.php +++ b/update.php @@ -247,3 +247,7 @@ function update_1024() { q("ALTER TABLE `profile` ADD `keywords` TEXT NOT NULL AFTER `religion` "); } +function update_1025() { + q("ALTER TABLE `user` ADD `maxreq` int(11) NOT NULL DEFAULT '10' AFTER `pwdreset` "); +} + |