2d23f5da16
Fix missing icon
2018-03-14 13:27:24 +01:00
1fe5478761
Update autoload.php
...
- add interface exist check for interface loading by vendor classes
2018-03-13 17:04:56 +01:00
cace666818
- if we have no RID but a SID, calculate the RID
...
- if both numeric ids are identical, dont try to change them
2018-03-13 16:07:10 +01:00
cbce3135d6
Give full height to notifications popup sidebar
2018-03-13 10:12:05 +01:00
0984cb7d8e
* AD/LDAP migration: change favorites and index states too
2018-03-12 21:23:49 +01:00
67e111ac2f
add missing backport for AB vcard feature
2018-03-12 17:55:02 +01:00
4ed5e06295
* Addressbook: Implement new feature to send vcard of contact to an already opened mail compose dialog
2018-03-12 17:46:56 +01:00
d83bb1c483
Fix tracking of opened popups not working after framework reload
2018-03-12 17:43:24 +01:00
ba31de222d
WIP framework's popup storage/restore:
...
- fix typo
2018-03-12 17:42:50 +01:00
2090d4f43a
WIP framework's popup storage/restore:
...
- Add missing template
2018-03-12 17:42:27 +01:00
f6b22c3643
WIP framework's popup storage/restore:
...
- Keep tracking of popup's window object and restore it when needed
- Implement a method to check an already opened popup and execute a method in the selected popup context
- Fix vcard import into opened compose windows not working
2018-03-12 17:41:38 +01:00
85ece9b5a6
Fix notifications navigator jumps out sometimes on navigation
2018-03-12 17:32:24 +01:00
9f2d613c07
* Notifications: New actions Prev and Next in order to navigate through messages
2018-03-12 17:31:54 +01:00
183ee014c6
API - Avoid issue with incompatable types by forcing to array, even if no account found
2018-03-12 09:02:52 -06:00
c4c57acf3d
* EMail/Tracker/InfoLog: fix error converting mails by replacing 4-byte utf8 chars
...
MySQL and MariaDB before 10.1 need 4-byte utf8 chars replaced with our default utf8 charset
(MariaDB 10.1 does the replacement automatic, 10.0 cuts everything off behind and MySQL gives an error)
Changing charset to utf8mb4 requires schema update, shortening of some indexes and probably have negative impact on performace!
if (substr($this->Type, 0, 5) == 'mysql' && $this->ServerInfo['version'] < 10.1)
{
$value = preg_replace('/[\x{10000}-\x{10FFFF}]/u', "\xEF\xBF\xBD", $value);
}
2018-03-12 14:03:52 +01:00
98f4abc0db
Add a fallback site title to avoid showing undefined as title
2018-03-12 12:18:39 +01:00
ae8913b1ff
* Filemanager: Fix sharing menu completely disappears when user has no rights to mail app
2018-03-12 11:24:32 +01:00
9ce0feaf9b
* Api: use proxy configuration when downloading available tutorial videos
2018-03-12 11:19:10 +01:00
569c7d2218
Fix tutorials.json url to use https
2018-03-12 11:08:38 +01:00
181747d006
Fix not working textbox validators containing backslashes
...
PHP xml parser reads backslashes literal from attributes,
while JavaScript ones need them escaped (eg. like PHP strings)
-> replace \\ with \ to get following XML working: validator="/^\\d+$"
2018-03-10 17:57:12 +01:00
383b15355c
Calendar - fix warning "Cannot use a scalar value as an array" when saving new event with default alarm
2018-03-09 15:39:36 -07:00
b475edc7a2
Silence warning about time in array format by passing it to constructor
2018-03-09 15:15:36 -07:00
09b6d37a04
* ActiveDirectory: additional allow accountExpires=0 for never expires
...
(beside attribute is not set or has value 9223372036854775807)
2018-03-09 19:57:09 +01:00
c37ae3b9b1
Make notifications popup_or_email option to consider email only if user is not available.
2018-03-08 11:24:54 +01:00
bf9cffcf6c
Fix preferences dialog gets scrollbar when selectbox Type is readonly
2018-03-08 11:11:19 +01:00
14eb243f2d
Some styling adjustments for mobile theme
2018-03-08 10:46:38 +01:00
f2457f50f3
Fix sidemenu loses its top border if the app is the last tab in the list
2018-03-08 10:46:19 +01:00
eccb8a9df2
Etemplate - email widget tooltip - show loading while waiting for server response, remove tooltip if nextmatch scrolls
2018-03-07 11:47:28 -07:00
cdafb417d3
Etemplate - don't assume event data will still be there after a timeout, fixes occasional errors about it being missing
2018-03-07 11:47:16 -07:00
614287a0ba
Fix add contact tooltip to work inside nextmatch again
2018-03-07 11:47:07 -07:00
45c7aa7c9c
* Api - Check if email address is known before offering 'Add as contact' button
2018-03-07 11:46:58 -07:00
472adc39d6
* Calendar - Fix exporting CSV from search results exported owner as participants
2018-03-07 11:46:27 -07:00
3ca0bd3e84
* Calendar - Fix moving event to an un-loaded day would show only that event when the day is viewed
2018-03-07 11:45:45 -07:00
9faf3c5252
* Calendar - new placeholders {{participant_emails}} for non-declined participants and {{participant_summary}} for a summary of participants by status
2018-03-07 11:45:18 -07:00
562e690f85
* Mail - Improvements to list display in address search results
...
Now automatic group lists & created distribution lists limited to 10 each
If there are more, this is indicated with ellipsis
2018-03-07 11:44:39 -07:00
b74a5da4f5
* Calendar - always show non-blocking icon for non-blocking events, regardless of private flag
2018-03-07 11:43:31 -07:00
f97c18c108
* Mail: Fix "tel:" href links wrongly get denied by mail compose
2018-03-05 18:21:06 +01:00
d7ce6af567
Fix mail with a bold digits gets removed from text part
2018-03-05 17:32:16 +01:00
50c7d62bc8
An attempt to fix the failing test on vertical char
2018-03-05 14:53:54 +01:00
bba57a254b
Fix broken sharing caused by commit 89a8e6f448
2018-03-05 11:15:35 +01:00
a987ddbe85
Make sure replace only and only VT char (Vertical Tab)
2018-03-02 12:14:17 +01:00
4ada67ee81
if we can not store failed login attempts in database, store it in cache
2018-02-28 18:02:53 +01:00
e4a5d599a2
* All apps: multiselect custom-field switches to single select after submit
2018-02-28 13:42:36 +01:00
ec9cc20c11
Switching consistent hashing (Libketama) off by default
...
as for just 2 Memcached servers it creates an extrem unbalanced
distribution favoring the 2. server and has no benefits,
as requests to the failed node can only go to the other one anyway.
2018-02-28 10:47:35 +01:00
5807fd0f43
* InfoLog/PHP7.1: fix fatal error stalling merge-print of some InfoLog templates under PHP 7.1+
...
Make prefix argument optional
2018-02-28 10:15:51 +01:00
a213a286df
* Addressbook - fix AJAX duplicate check skipped email addresses
2018-02-27 11:10:45 -07:00
e437a92c7e
update to EGroupware GmbH and 2018
2018-02-26 14:06:14 +01:00
65e54052c7
Admin - Can't only delete categories for the selected app. Globals only deletable through Admin
2018-02-21 15:21:56 -07:00
a67675d0f6
* Calendar - Filter birthdays by name to remove duplicates caused by account + contact
2018-02-20 08:55:36 -07:00
1f841adfa4
Fix couple of bugs in notifications, discovered by Stefan Unverricht
2018-02-20 15:20:57 +01:00