Projects
Kolab:16:Testing:Candidate
chwala
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
Expand all
Collapse all
Changes of Revision 5
View file
chwala-0.5.14.tar.gz/lib/api/file_get.php
Changed
@@ -45,9 +45,9 @@ } $params = array( - 'force-download' => rcube_utils::get_boolean((string) $this->args'force-download'), - 'force-type' => $this->args'force-type', - 'head' => $this->args'head' ?: $method == 'HEAD', + 'force-download' => rcube_utils::get_boolean((string) $this->args'force-download' ?? ""), + 'force-type' => $this->args'force-type' ?? null, + 'head' => ($this->args'head' ?? null) ?: $method == 'HEAD', ); list($this->driver, $path) = $this->api->get_driver($this->args'file');
View file
chwala-0.5.14.tar.gz/lib/file_api.php
Changed
@@ -192,7 +192,7 @@ $mem .= '/'. round(memory_get_peak_usage() / 1024 / 1024, 1); } - $path = !empty($this->path) ? '/' . implode($this->path, '/') : ''; + $path = !empty($this->path) ? '/' . implode('/', $this->path) : ''; $request = ($this instanceof file_api_wopi ? 'wopi/' : '') . $this->request; if ($path !== '' && substr_compare($this->request, $path, -1 * strlen($path), strlen($path), true) != 0) {
View file
chwala-0.5.14.tar.gz/lib/file_api_core.php
Changed
@@ -322,7 +322,7 @@ $this->get_backend(); // @todo: Move this into drivers - if ($this->icache$key === null + if (($this->icache$key ?? null) === null && class_exists('kolab_storage') && ($ldap = kolab_storage::ldap()) ) { @@ -331,7 +331,7 @@ $this->icache$key = $user ?: false; } - if ($this->icache$key) { + if ($this->icache$key ?? null) { return $this->icache$key'displayname' ?: $this->icache$key'name'; } }
View file
chwala-0.5.14.tar.gz/lib/file_document.php
Changed
@@ -233,7 +233,7 @@ */ public function session_info($id, $with_invitations = false) { - $session = $this->icache"session:$id"; + $session = $this->icache"session:$id" ?? null; if (!$session) { $db = $this->rc->get_dbh(); @@ -860,7 +860,7 @@ if (!empty($_SERVER'HTTP_REFERER')) { $url = parse_url($_SERVER'HTTP_REFERER'); - return $url'scheme' . '://' . $url'host' . ($url'port' ?: ''); + return $url'scheme' . '://' . $url'host' . (($url'port' ?? null) ?: ''); } return (rcube_utils::https_check() ? 'https' : 'http') . '://' . $_SERVER'HTTP_HOST';
View file
chwala-0.5.14.tar.gz/lib/wopi/files.php
Changed
@@ -37,7 +37,7 @@ } $file_id = $this->api->path0; - $command = $this->api->path1; + $command = $this->api->path1 ?? null; if ($file_id != $_SESSION'document_session') { throw new Exception("File ID not specified", file_api_core::ERROR_UNAUTHORIZED);
View file
chwala.dsc
Changed
@@ -2,7 +2,7 @@ Source: chwala Binary: chwala Architecture: all -Version: 0.5.14-1~kolab1 +Version: 0.5.14-1~kolab2 Maintainer: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Uploaders: Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Homepage: http://kolab.org/about/chwala/
View file
debian.changelog
Changed
@@ -1,4 +1,4 @@ -chwala (0.5.14-1~kolab1) unsable; urgency=low +chwala (0.5.14-1~kolab2) unsable; urgency=low * Release version 0.5.14
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.