From 01f64f72fe240fdfc10f52eba4908090c2fc1acb Mon Sep 17 00:00:00 2001 From: "m.fu" Date: Sun, 5 Jun 2011 21:54:17 +0200 Subject: 7.x-1.0 is the first 7.x compatible release. by stfwi Additional features are: (stfwi) - htgroup file now optinoal - optional remove whitespaces from user names - optional user names lowercase - optional specify a domain where emails shall be exported as well as htuser login Fixes: (stfwi) - fixed htgroup/htpassed compliancy (sanatizing names) - fixed "liberal admin permissions" by moving into config menu - fixed php5 deprecated functions (such as split() ) --- HTPasswdSync.install | 88 ++++++++++++++++++++++++---------------------------- 1 file changed, 41 insertions(+), 47 deletions(-) mode change 100644 => 100755 HTPasswdSync.install (limited to 'HTPasswdSync.install') diff --git a/HTPasswdSync.install b/HTPasswdSync.install old mode 100644 new mode 100755 index de25918..77e5112 --- a/HTPasswdSync.install +++ b/HTPasswdSync.install @@ -1,59 +1,53 @@ array( - 'username' => array( - 'description' => 'The {users}.username.', - 'type' => 'varchar', - 'length' => 33, - 'not null' => TRUE, - 'default' => 0, - ), - 'passwd' => array( - 'description' => 'The crypted (crypt) password.', - 'type' => 'varchar', - 'length' => 33, - 'not null' => TRUE, - 'default' => '', - ), - ), - 'primary key' => array('username'), + $schema['htpasswdsync_passwd'] = array( + 'fields' => array( + 'username' => array( + 'description' => 'The {users}.username.', + 'type' => 'varchar', + 'length' => 64, + 'not null' => true, + 'default' => 0, + ), + 'passwd' => array( + 'description' => 'The crypted (crypt) password.', + 'type' => 'varchar', + 'length' => 64, + 'not null' => true, + 'default' => '', + ), + ), + 'primary key' => array('username'), ); return $schema; } +?> \ No newline at end of file -- cgit v1.2.3