diff options
Diffstat (limited to 'mod/dav.php')
-rw-r--r-- | mod/dav.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dav.php b/mod/dav.php index f7f89b6da..bba260917 100644 --- a/mod/dav.php +++ b/mod/dav.php @@ -1,13 +1,13 @@ <?php /** * @file mod/dav.php - * @brief Initialize RedMatrix's cloud (SabreDAV). + * @brief Initialize Hubzilla's cloud (SabreDAV). * * Module for accessing the DAV storage area from a DAV client. */ use Sabre\DAV; -use RedMatrix\RedDAV; +use Hubzilla\RedDAV; // composer autoloader for SabreDAV require_once('vendor/autoload.php'); @@ -118,7 +118,7 @@ function dav_init(&$a) { if ((! $auth->observer) && (! $isapublic_file) && (! $davguest)) { try { - $auth->Authenticate($server, t('RedMatrix channel')); + $auth->Authenticate($server, t('Hubzilla channel')); } catch (Exception $e) { logger('mod_cloud: auth exception' . $e->getMessage()); |