From 7276ebeac7a2f9dd055e29024c4b5ffd08e85c83 Mon Sep 17 00:00:00 2001 From: tswagger Date: Mon, 11 May 2015 13:38:09 -0500 Subject: [PATCH 1/2] Minor Typo Fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80d60b0..09e87fc 100644 --- a/README.md +++ b/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); ``` From 1e6007a7c6eeeef5edea4d860b90e1d9c0c6683c Mon Sep 17 00:00:00 2001 From: tswagger Date: Mon, 18 May 2015 07:52:58 -0500 Subject: [PATCH 2/2] Adjusted password field to 64 chars --- sql/Aauth_v2.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/Aauth_v2.sql b/sql/Aauth_v2.sql index b0c68a1..008d6ad 100644 --- a/sql/Aauth_v2.sql +++ b/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,