Browse Source

Merge pull request #40 from tswagger/master

Password storage size bug fix
develop
Emre Akay 10 years ago
parent
commit
ecb4b3c49e
  1. 2
      README.md
  2. 2
      sql/Aauth_v2.sql

2
README.md

@ -171,7 +171,7 @@ $this->aauth->send_pm(3,4,'New cloaks','These new cloaks are fantastic!')
#### Banning users
Frodo has broke the rules and will not need to be banned from the system.
Frodo has broke the rules and will now need to be banned from the system.
```php
$this->aauth->ban_user(3);
```

2
sql/Aauth_v2.sql

@ -107,7 +107,7 @@ DROP TABLE IF EXISTS `aauth_users`;
CREATE TABLE `aauth_users` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) COLLATE utf8_general_ci NOT NULL,
`pass` varchar(50) COLLATE utf8_general_ci NOT NULL,
`pass` varchar(64) COLLATE utf8_general_ci NOT NULL,
`name` varchar(100) COLLATE utf8_general_ci,
`banned` tinyint(1) DEFAULT '0',
`last_login` datetime DEFAULT NULL,

Loading…
Cancel
Save