Skip to content

Commit

Permalink
improve task restriction, fix PHP8 Composer errors
Browse files Browse the repository at this point in the history
  • Loading branch information
johndoh committed Nov 12, 2021
1 parent e6d14b5 commit c8cd77a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Roundcube Webmail GlobalAddressbook
===================================

Version 2.0.2 (2021-11-12, rc-1.3)
=================================================
* Fix plugin installation via Composer on PHP8+

Version 2.0.1 (2021-03-26, rc-1.3)
=================================================
* Restore support for localized address book names (#54)
Expand Down
2 changes: 1 addition & 1 deletion globaladdressbook.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class globaladdressbook extends rcube_plugin
const DEFAULT_USER = '_global_addressbook_user_';
const DEFAULT_HOST = 'localhost';

public $task = '^((?!login).)*$';
public $task = '?(?!login$|logout$|cli$).*';
private $abook_ids = [];
private $config = [];
private $rcube;
Expand Down

0 comments on commit c8cd77a

Please sign in to comment.