From: kkalev Date: Mon, 13 Sep 2004 09:37:17 +0000 (+0000) Subject: Fix a small typo in the userinfo mysql schema. Found by Evert Meulie X-Git-Url: https://git.entuzijast.net/?a=commitdiff_plain;h=0c61315cd55610423a2ac929c3611a828903efdc;p=freeradius-dialup-admin.git Fix a small typo in the userinfo mysql schema. Found by Evert Meulie --- diff --git a/Changelog b/Changelog index 6726664..36903e7 100644 --- a/Changelog +++ b/Changelog @@ -24,6 +24,7 @@ Ver 1.75: * Make pagesize 'all' work again. Bug found by apellido jr., wilfredo p. * Make 'Add NAS' function in the nas admin page more easily accessible * Fix a small bug in user_admin.php3 found by Joerg Staedele +* Fix a small typo in the userinfo mysql schema. Found by Evert Meulie Ver 1.72: * Move the xlat function to a separate file in lib/xlat.php3 * Add a lib/sql/nas_list.php3 to also get the nas list from sql (naslist.conf still works) diff --git a/sql/mysql/userinfo.sql b/sql/mysql/userinfo.sql index aacb4d2..ba9d721 100644 --- a/sql/mysql/userinfo.sql +++ b/sql/mysql/userinfo.sql @@ -12,5 +12,5 @@ CREATE TABLE userinfo ( Mobile varchar(200), PRIMARY KEY (id), KEY UserName (UserName), - KEY Departmet (Department) + KEY Department (Department) );