| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
The previous test cases that tried to redirect to ../index.php and similar
might cause us to try to go to http://localhost/../index.php, which will
result in http://index.php. As this obviously will trigger an error as
intended, we should not put this inside our test cases for the redirect
function.
PHPBB3-11997
|
|
|
|
|
|
|
|
| |
Controller routes that are supposed to link to parent directories can't be
tested as the links are incorrectly created depending on enabled mod rewrite
or not.
PHPBB3-11997
|
|
|
|
|
|
|
| |
The user's page directory needs to be added to the redirect URL for proper
redirects outside of the forum root. Fix the unit tests accordingly.
PHPBB3-11997
|
|
|
|
| |
PHPBB3-11997
|
|
|
|
|
|
|
| |
By using path_helper's clean_url() method, we'll be able to properly check
the full URL instead of just parts of the expected URL.
PHPBB3-11997
|
|
|
|
|
|
|
| |
Adding a call to this method to the redirect function will make sure that we
do not end up with incorrect URLs after using append_sid().
PHPBB3-11997
|
|
|
|
|
|
|
|
| |
The redirect function will now properly redirect to where we want it to.
It will no longer try to check if the file or directory we redirect to exist.
This will ensure compatibility with the new routes.
PHPBB3-11997
|
|
|
|
| |
PHPBB3-11997
|
|
|
|
|
|
| |
This method will get rid of unnecessary . and .. in URLs.
PHPBB3-11997
|
|
|
|
|
|
|
| |
Redirects to parent folders were possible with the previous redirect function.
This change will allow these redirects again.
PHPBB3-11997
|
|
|
|
|
|
|
|
| |
The controller will now output the expected redirect returns the same way the
redirect returns are output. The extension controller test will compare those
2 outputs.
PHPBB3-11997
|
|\
| |
| |
| |
| | |
Conflicts:
tests/functional/fixtures/ext/foo/bar/config/services.yml
|
| |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* prototech/ticket/11241:
[ticket/11241] Retain button gradient when menu is active.
[ticket/11241] Fix the disappearing dropdown when responsive changes take effect
[ticket/11241] Add border to dropdown menu options.
[ticket/11241] Add events & var for extensions to dropdown.
[ticket/11241] Fix the dropdown in RTL languages.
[ticket/11241] Use DEFINE for the block.
[ticket/11241] Consolidate topic actions into "Topic tools" dropdown.
[ticket/11241] Add dropdown control button.
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| | |
| | |
| | |
| | | |
PHPBB3-11241
|
| |/
| |
| |
| | |
PHPBB3-11241
|
| |\
| | |
| | |
| | |
| | |
| | | |
* cyberalien/ticket/11979:
[ticket/11979] Fix errors in dropdown
[ticket/11979] Add ability to create dropdown menu to prosilver
|
| | |
| | |
| | |
| | | |
PHPBB3-11979
|
| | |
| | |
| | |
| | | |
PHPBB3-11979
|
| |\ \
| | | |
| | | | |
[ticket/12062] Fix to allow extensions to use INCLUDEJS in the ACP
|
| |/ /
| | |
| | |
| | | |
PHPBB3-12062
|
| |\ \
| | | |
| | | | |
[ticket/12059] Allow INCLUDECSS to work with ACP templates
|
| |/ /
| | |
| | |
| | | |
PHPBB3-12059
|
| |\ \
| | | |
| | | | |
[ticket/12058] Add missing apostrophe to avatar_types migration queries
|
| |/ /
| | |
| | |
| | | |
PHPBB3-12058
|
| |\ \
| | | |
| | | | |
[ticket/11912] Add mimetype guesser for proper mimetype guessing
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-11912
|
| | |\ \
| | | | |
| | | | |
| | | | |
| | | | | |
Conflicts:
phpBB/config/services.yml
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The mimetype guesser priority can now be set through the service definition.
Mimetypes will be guessed from the guesser with the highest priority to
the one with the lowest priority. Standard priority types have been added
to the service definition file. Any integer value can be used though.
Standard mimetype guessers that do not have the methods get_priority
and set_priority implemented, like the standard MimeTypeGuessers of symfony,
will have the default priority with the value of 0. Lower priority guessers
have values lower than 0 while high priority ones can be added with values
higher than 0.
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The content_guesser now only guesses the mimetype with the function
mime_content_type() while the guessing by extension is done using the
extension_guesser.
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This will contain proper documentation of the required methods if anyone
would implement a newer guesser.
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
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
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|
| | | | |
| | | | |
| | | | |
| | | | | |
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
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11912
|