Commit e30a77cf authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #668 in ZP/z-push from...

Merge pull request #668 in ZP/z-push from bugfix/ZP-1374-include-path-in-imap-backend-lacks-pear-folders to develop

* commit 'c1000d1c':
  ZP-1374 Add imap backend location to the include_path when using imap backend.
parents f95f2087 c1000d1c
...@@ -35,7 +35,7 @@ require_once("backend/imap/user_identity.php"); ...@@ -35,7 +35,7 @@ require_once("backend/imap/user_identity.php");
// Add the path for Andrew's Web Libraries to include_path // Add the path for Andrew's Web Libraries to include_path
// because it is required for the emails with ics attachments // because it is required for the emails with ics attachments
// @see https://jira.z-hub.io/browse/ZP-1149 // @see https://jira.z-hub.io/browse/ZP-1149
set_include_path(get_include_path() . PATH_SEPARATOR . '/usr/share/awl/inc'); set_include_path(get_include_path() . PATH_SEPARATOR . '/usr/share/awl/inc' . PATH_SEPARATOR . dirname(__FILE__) . '/');
class BackendIMAP extends BackendDiff implements ISearchProvider { class BackendIMAP extends BackendDiff implements ISearchProvider {
private $wasteID; private $wasteID;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment