You're not reviewing the full diff of
request 3207
, but the diff to the superseded
request 3204
(Show full diff)
Overview
Request 3207 (accepted)
New release
- Created by mollekopf over 1 year ago
- In state accepted
- Supersedes 3204
-
Open review for
Admin
-
Open review for
vanmeeuwen
-
Open review for
mollekopf
-
Open review for
kolab-developers
iRony.spec
Changed
x
1
2
%endif
3
4
%global _ap_sysconfdir %{_sysconfdir}/%{httpd_name}
5
-%global upstream_version 0.4.8
6
7
Name: iRony
8
-Version: 0.4.8.2
9
+Version: 0.4.8
10
Release: 1%{?dist}
11
Summary: DAV for Kolab Groupware
12
13
14
URL: http://kolab.org
15
16
# From 7ebe1adc8b7c0f818d837d682b2b85202aac9303
17
-Source0: iRony-%{upstream_version}.tar.gz
18
+Source0: iRony-%{version}.tar.gz
19
Source1: iRony.conf
20
Source2: iRony.logrotate
21
22
debian.changelog
Changed
10
1
2
-irony (0.4.8.2-1~kolab1) unstable; urgency=low
3
+irony (0.4.8-1~kolab1) unstable; urgency=low
4
5
- * New release
6
+ * PHP 8 fixes
7
8
-- Christian Mollekopf <mollekopf@apheleia-it.ch> Fri, 24 Feb 2023 12:12:13 +0100
9
10
iRony-0.4.8.tar.gz/lib/Kolab/CalDAV/CalendarBackend.php
Changed
10
1
2
}
3
4
// map attachments attribute
5
- $object'_attachments' = !empty($object'attachments') ? $object'attachments' : array();
6
+ $object'_attachments' = $object'attachments';
7
unset($object'attachments');
8
9
// remove categories from object data (only for tasks yet)
10
iRony-0.4.8.tar.gz/lib/Kolab/CardDAV/LDAPDirectory.php
Changed
46
1
2
$this->addressBookInfo = array(
3
'id' => self::DIRECTORY_NAME,
4
'uri' => self::DIRECTORY_NAME,
5
- '{DAV:}displayname' => !empty($config'name') ? $config'name' : "LDAP Directory",
6
+ '{DAV:}displayname' => $config'name' ?: "LDAP Directory",
7
'{urn:ietf:params:xml:ns:carddav}supported-address-data' => new CardDAV\Xml\Property\SupportedAddressData(),
8
'principaluri' => $principalUri,
9
);
10
11
12
private function connect()
13
{
14
- if (!isset($this->ldap)) {
15
- $this->ldap = new rcube_ldap($this->config, $this->config'debug');
16
- $this->ldap->set_pagesize(!empty($this->config'sizelimit') ? $this->config'sizelimit' : 10000);
17
- }
18
+ if (!isset($this->ldap)) {
19
+ $this->ldap = new rcube_ldap($this->config, $this->config'debug');
20
+ $this->ldap->set_pagesize($this->config'sizelimit' ?: 10000);
21
+ }
22
23
- return $this->ldap->ready ? $this->ldap : null;
24
+ return $this->ldap->ready ? $this->ldap : null;
25
}
26
27
/**
28
29
$children = array();
30
31
// return cached index
32
- if (!$this->query && empty($this->config'searchonly') && $this->cache && ($cached_index = $this->cache->get('index'))) {
33
+ if (!$this->query && !$this->config'searchonly' && $this->cache && ($cached_index = $this->cache->get('index'))) {
34
foreach ($cached_index as $uid => $c) {
35
$obj = array(
36
'id' => $uid,
37
38
}
39
40
// query LDAP if we have a search query or listing is allowed
41
- if (($this->query || empty($this->config'searchonly')) && ($ldap = $this->connect())) {
42
+ if (($this->query || !$this->config'searchonly') && ($ldap = $this->connect())) {
43
// set pagesize from query limit attribute
44
if ($this->query && $this->query->limit) {
45
$this->ldap->set_pagesize(intval($this->query->limit));
46
iRony.dsc
Changed
10
1
2
Source: irony
3
Binary: irony
4
Architecture: all
5
-Version: 1:0.4.8.2-1~kolab1
6
+Version: 0.4.8-1~kolab1
7
Maintainer: Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com>
8
Uploaders: Paul Klos <kolab@klos2day.nl>
9
Homepage: http://www.kolab.org/
10
Refresh
Refresh
Login required, please
login
in order to comment