Fixes
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<version>4.0.0-dev</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Andreas Böhler <dev (at) aboehler (dot) at></author>
|
||||
<author>Marcin Łojewski <dev (at) mlojewski (dot) me></author>
|
||||
<author>Marcin Łojewski <dev@mlojewski.me></author>
|
||||
<namespace>UserSQL</namespace>
|
||||
<bugs>https://github.com/nextcloud/user_sql/issues</bugs>
|
||||
<repository>https://github.com/nextcloud/user_sql</repository>
|
||||
@@ -21,7 +21,7 @@
|
||||
</types>
|
||||
<category>auth</category>
|
||||
<dependencies>
|
||||
<php min-version="5.6"/>
|
||||
<php min-version="7.0"/>
|
||||
<nextcloud min-version="13" max-version="13"/>
|
||||
</dependencies>
|
||||
<settings>
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 66 KiB After Width: | Height: | Size: 76 KiB |
@@ -79,6 +79,7 @@ class EmailSync implements IUserAction
|
||||
|
||||
/**
|
||||
* @inheritdoc
|
||||
* @throws \OCP\PreConditionNotMetException
|
||||
*/
|
||||
public function doAction(User $user)
|
||||
{
|
||||
|
||||
@@ -39,7 +39,7 @@ class Application extends App
|
||||
*/
|
||||
public function __construct(array $urlParams = array())
|
||||
{
|
||||
parent::__construct('user_sql', $urlParams);
|
||||
parent::__construct("user_sql", $urlParams);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -146,7 +146,7 @@ function print_select_options(
|
||||
print_text_input($l, "db-table-user-column-email", "Email", $_['db.table.user.column.email']);
|
||||
print_text_input($l, "db-table-user-column-home", "Home", $_['db.table.user.column.home']);
|
||||
print_text_input($l, "db-table-user-column-password", "Password", $_['db.table.user.column.password']);
|
||||
print_text_input($l, "db-table-user-column-name", "Username", $_['db.table.user.column.name']);
|
||||
print_text_input($l, "db-table-user-column-name", "Display name", $_['db.table.user.column.name']);
|
||||
print_text_input($l, "db-table-user-column-avatar", "Can change avatar", $_['db.table.user.column.avatar']); ?>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user