nathangray
183ee014c6
API - Avoid issue with incompatable types by forcing to array, even if no account found
2018-03-12 09:02:52 -06:00
Ralf Becker
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
Hadi Nategh
98f4abc0db
Add a fallback site title to avoid showing undefined as title
2018-03-12 12:18:39 +01:00
Ralf Becker
9ce0feaf9b
* Api: use proxy configuration when downloading available tutorial videos
2018-03-12 11:19:10 +01:00
Hadi Nategh
569c7d2218
Fix tutorials.json url to use https
2018-03-12 11:08:38 +01:00
Ralf Becker
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
nathangray
b475edc7a2
Silence warning about time in array format by passing it to constructor
2018-03-09 15:15:36 -07:00
Ralf Becker
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
nathangray
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
nathangray
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
nathangray
614287a0ba
Fix add contact tooltip to work inside nextmatch again
2018-03-07 11:47:07 -07:00
nathangray
45c7aa7c9c
* Api - Check if email address is known before offering 'Add as contact' button
2018-03-07 11:46:58 -07:00
nathangray
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
Hadi Nategh
f97c18c108
* Mail: Fix "tel:" href links wrongly get denied by mail compose
2018-03-05 18:21:06 +01:00
Hadi Nategh
d7ce6af567
Fix mail with a bold digits gets removed from text part
2018-03-05 17:32:16 +01:00
Hadi Nategh
bba57a254b
Fix broken sharing caused by commit 89a8e6f448
2018-03-05 11:15:35 +01:00
Hadi Nategh
a987ddbe85
Make sure replace only and only VT char (Vertical Tab)
2018-03-02 12:14:17 +01:00
Ralf Becker
4ada67ee81
if we can not store failed login attempts in database, store it in cache
2018-02-28 18:02:53 +01:00
Ralf Becker
e4a5d599a2
* All apps: multiselect custom-field switches to single select after submit
2018-02-28 13:42:36 +01:00
Ralf Becker
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
nathangray
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
Ralf Becker
e437a92c7e
update to EGroupware GmbH and 2018
2018-02-26 14:06:14 +01:00
Ralf Becker
64aba9cbb9
* Admin: new config to generate no or lowercase email addresses for new users
2018-02-20 09:17:17 +01:00
Hadi Nategh
00cd9175e9
Add closing timer on notifications
2018-02-19 17:21:03 +01:00
nathangray
da586c3512
Use abstraction to determine mime type, see 9a398594ac
2018-02-15 10:20:02 -07:00
nathangray
f262fed4b2
Place check on session first to avoid errors if it's missing
2018-02-15 09:30:08 -07:00
nathangray
f4e2230191
* Etemplate - Don't trust browsers mime if we don't have to - fixes incorrect mime types and Resources rejecting pictures
2018-02-15 08:42:22 -07:00
nathangray
564a4cab5d
* Admin - fix group list filter & sort
...
- Remove created & modified columns since they're not stored for groups
- Fix email sort
- Fix search returned all results
2018-02-15 08:41:29 -07:00
Hadi Nategh
027af2c760
* Mail: Fix spacing issue between grouped toolbars
2018-02-15 15:14:39 +01:00
Hadi Nategh
5f21737a42
Make sure the node is available before addressing its tooltip, fixes broken rename folder action in mail
2018-02-15 14:01:54 +01:00
Ralf Becker
c9cc1f2e63
fix PHP Warning if keys contain a backslash as in namespaced classes
2018-02-15 09:56:39 +01:00
nathangray
a1a43afe53
* Api - Fix sharing from mounted shares failed with 404
2018-02-14 10:30:23 -07:00
Ralf Becker
cf722f6d01
* Filemanager/Sharing: fix PHP 7.1 error causing auth request to popup
...
Session only stores app-names and $GLOBALS[egw_info][user][apps] gets restored from $GLOBALS[egw_info][apps] for the allowed app-names. Check if we need to restore from installed apps array was using is_array($GLOBALS[egw_info][user][apps][api]) instead or isset($GLOBALS[egw_info][user][apps][0]), as check if it is a real, non associative array
2018-02-14 09:47:32 +01:00
Ralf Becker
d2479a71f8
Changelog for 17.1.20180209
2018-02-09 11:12:29 +00:00
Ralf Becker
fc42b3474d
pending DE and SK translation from Stefan Unvericht
2018-02-09 12:06:22 +01:00
Hadi Nategh
1570633761
Add some translations and adopt link list widget to take editor opener handler preference into account
2018-02-08 14:25:58 +01:00
Hadi Nategh
9d5ddc84e2
* Filemanager: Add an user preference for being able to chose whether opening a merge print document should download it or open it with collabora editor
2018-02-08 14:24:05 +01:00
Hadi Nategh
06ef14c78e
* Filemanager: Add new user preference in order to be able to exclude specific file extensions from being opened by document editor (eg. Collabora)
2018-02-08 14:15:51 +01:00
Hadi Nategh
0bbbad3a8c
Allow custom theme for mobile template
2018-02-08 10:31:23 +01:00
nathangray
e9d29852ad
* Api - Fix some spelling errors, reported by Stefan Unverricht
2018-02-07 13:31:50 -07:00
Ralf Becker
56f9c9478d
also fixing preg for email with optional domain part
2018-02-05 19:13:49 +01:00
nathangray
8231f44ce2
Attempt to prefer user's date format when parsing date from a string.
...
Should fix merging into spreadsheet problems with certain date formats (dd/mm/yyyy)
2018-02-05 10:11:59 -07:00
Ralf Becker
f2c4ccd1b0
fixing the fix again: removing check from client side
...
We can not use "(?<![.\s])", used to check that name-part does not end in
a dot or white-space. The expression is valid in recent Chrome, but fails
eg. in Safari 11.0 or node.js 4.8.3 and therefore grunt uglify!
Server-side will fail in that case because it uses the full regexp.
2018-02-05 17:02:14 +01:00
Ralf Becker
f203fa3eb2
fixing the fix, now "email.@domain.com" is invalied, but "x@domain.com" is valid
2018-02-05 16:07:46 +01:00
Ralf Becker
5668f9b04a
one letter name-part in email address failed validation, eg. "x@egroupware.org"
2018-02-05 15:35:41 +01:00
Hadi Nategh
189de3ddda
* Addressbook: Fix avatar photo gets removed when adding category to contact via contextmenu
2018-01-31 18:25:40 +01:00
Ralf Becker
886655597c
Changelog for 17.1.20180130
2018-01-30 16:34:48 +00:00
Ralf Becker
a23be28d97
allow user & password again as in http://user:pass@example.com/ to fix tests
2018-01-30 17:03:38 +01:00
Ralf Becker
4d35e42eeb
allow private IP addresses (starting with 10.|169.254.|192.168.) too
2018-01-30 16:20:43 +01:00
nathangray
c1e03779ff
Switch phrase to one already translated, make confirmation dialog a little wider
2018-01-29 16:32:41 -07:00