Changes behavior of topiclist lists on mobile devices.
Shows/hides certain elements in each row to present all
important information to visitor on mobile devices, such
as last post when viewing forum instead of first post.
Also fixes topiclist layout bug in drafts.html
PHPBB3-11956
* prototech/ticket/11138:
[ticket/11138] Do not use AJAX for ACP resync features.
[ticket/11138] Increase AJAX timeout period to 15 seconds.
[ticket/11872] Template syntax typos in oauth templates
Until now, the user data had both user_id and group_id keys in the avatar
data. As both group_ and user_ prefixes were removed the group_id was
collapsed onto the user_id and therefore all users in the same group had
the same prefix for their uploaded avatars. This patch will make sure
that the correct id is used depending on whether it's a group's or user's
avatar data.
PHPBB3-11525
It seems like the function group_correct_avatar() was forgotten while adding
the new avatar system. We now pass the group_id 0 to the upload avatar and
let the function group_correct_avatar() fix the avatar filename after creating
the group like it was done previously.
PHPBB3-11842
The filename of the files sent to the guesser by plupload do not contain
the file extension. Therefore, it's impossible to guess the mimetype if
only the content_guesser is available and the function mime_content_type()
doesn't exist. By supplying the filename we can circumvent this issue.
PHPBB3-11912
The content_guesser will try to use the function mime_content_type()
if it's available. If that is not the case, the content_guesser will try to
guess the mimetype using the file extension of the supplied file.
Since this guesser will be registered after the other guessers, it will
be only used if the other guessers are not available.
PHPBB3-11912
Add the overall_header_navigation_append / prepend template events
used in Prosilver to subsilver2 as well. This will allow extensions to
add Nav Links to Subsilver2.
http://tracker.phpbb.com/browse/PHPBB3-11966
PHPBB3-11966
There are no longer seperate javascript files for each type of uploader.
New filenames have been kept as used inside the plupload package.
PHPBB3-11914
The hidden attachment_data list needs to be updated if a file got removed.
This was not done until now and caused a general error after submitting a
post if a file was removed after uploading it.
PHPBB3-11916
* marc1706/ticket/11930:
[ticket/11930] Update docblock of avatar driver constructor
[ticket/11930] Modify order of properties to fit constructor method
[ticket/11930] Move path_helper in front of optional cache argument
[ticket/11930] Fix tests after adding phpbb\path_helper to avatar drivers
[ticket/11930] Use \phpbb\path_helper for avatar URLs