| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Also add some information to the confirm-box (forum_name / topic title)
PHPBB3-10237
|
|
|
|
| |
PHPBB3-10237
|
|\
| |
| |
| |
| | |
* prep-release-3.0.9:
[ticket/10247] Use COUNT(*) instead of COUNT(attempt_id)
|
| |\
| | |
| | |
| | |
| | | |
* naderman/ticket/10247:
[ticket/10247] Use COUNT(*) instead of COUNT(attempt_id)
|
| | |
| | |
| | |
| | |
| | |
| | | |
attempt_id column was deleted
PHPBB3-10247
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* prep-release-3.0.9:
[prep-release-3.0.9] Update Changelog for 3.0.9 release.
[prep-release-3.0.9] Bumping version number for the final 3.0.9 release.
[ticket/10247] Removing attempt_id column from the 3.0.8 to 3.0.9-RC1 updater.
[ticket/10247] Add a db_tools test for the removal of a primary key column.
[ticket/10247] Add empty data section to database update for RC4
[ticket/10247] Remove unecessary attempt_id primary key column
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | | |
|
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
To make sure that this column (which was too small and unecessary) does not
remain on 3.0.9-RCX installations and boards that were updated to a 3.0.9 RC,
the 3.0.10-RC1 release must correctly drop the column after db_tools has been
corrected and fully reviewed. The current version is not capable of dropping
primary keys correctly on all supported DBMSs.
PHPBB3-10247
|
| |
| |
| |
| | |
PHPBB3-10247
|
| |
| |
| |
| |
| |
| |
| |
| | |
The database update drops any key of the same name (potential primary key) and
afterwards the column. This does not work on some of the supported DBMS and
needs further changes.
PHPBB3-10247
|
| | |
|
|\ \
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* prep-release-3.0.9:
[prep-release-3.0.9] Update Changelog for 3.0.9-RC3 release.
[prep-release-3.0.9] Bumping version number for 3.0.9-RC3.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
|
| | |
|
| | |
|
|\ \
| |/
| |
| |
| | |
* prep-release-3.0.9:
[ticket/10233] IE Emulation fix breaks PM posting layout
|
| |\
| | |
| | |
| | |
| | | |
* naderman/ticket/10233:
[ticket/10233] IE Emulation fix breaks PM posting layout
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The minimum and maximum width of 100% make the textarea dynamically
adjust. However the smilies next to the textarea will float out of
their containing div when the default width pre-min/max is specified
as a too high value.
PHPBB3-10233
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* prep-release-3.0.9:
[ticket/10188] Prevent semi-compressed output
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When a non-fatal error occurs at the beginning of the script before any custom
error handler is set one of two situations can be encountered:
1) if the ini option output buffer is disabled:
- headers are sent to the http client
- the error message is output
2) if the ini option output_buffer is enabled or the script
is run within an ob_start()/ob_end() wrapper:
- the error message is written to the output buffer
Once the script reaches page_header() phpbb starts gzip compression if enabled.
This is done through ob_start with a ob_gzhandler as a callback. The
compression is skipped if headers have already been sent. In situation 1) the
error message sent in plain text comes with headers and this gzip compression
is skipped. The client receives a plaintext version of the page. However in
situation 2) headers have not been sent yet and the rest of the page will be
compressed. The result is a plaintext error message followed by compressed
output. The client does not understand this output resulting in either an
error message or simply a blank page in the browser.
In addition to the above situation this problem occurs with errors that are
triggered after the custom error handler is loaded. The problem has been
noticed before, and a workaround was found. The error handler would call
ob_flush() for particular configuration settings before outputting the error
message. This resulted in headers being sent when output buffering was enabled
thus disabling gzip compression for the rest of the page. The constraints under
which ob_flush() was called were lessened over time whenever a new case was
found that would trigger this problem. Eventually ob_flush() would be called
even when code causing an E_NOTICE was simply run within an ob_start/ob_end.
This makes it impossible to use output buffering to retrieve the content of an
error message without prohibiting the page from setting headers afterwards.
This commit removes all flushing in msg_handler completely and instead fixes
the problem for both errors before and after the error handler is registered.
GZIP compression is only enabled if there is at most one level of output
buffering (e.g. the output_buffer php.ini option is enabled) and if there has
not yet been any output in this buffer. This should avoid any partial output
compression.
PHPBB3-10188
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* prep-release-3.0.9:
[ticket/7729] Prevent date/time functions from throwing E_WARNING on PHP 5.3.
|
| | |
| | |
| | |
| | | |
PHPBB3-7729
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* prep-release-3.0.9:
[ticket/10228] Correct "trigger" to "triggered" in acp registration settings
|
| | |
| | |
| | |
| | | |
PHPBB3-10228
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* prep-release-3.0.9:
[ticket/10234] Report E_WARNING errors as "PHP Warning" instead of "PHP Notice"
|
| |\ \
| | | |
| | | |
| | | |
| | | | |
* ticket/bantu/10234:
[ticket/10234] Report E_WARNING errors as "PHP Warning" instead of "PHP Notice"
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-10234
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* prep-release-3.0.9:
[ticket/10223] Make definition of phpbb_require_updated conditional
|
| |\ \ \
| | |/ /
| |/| |
| | | |
| | | | |
* naderman/ticket/10223:
[ticket/10223] Make definition of phpbb_require_updated conditional
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The automatic updater defines it too and includes database_update.php
for updating which causes an error otherwise.
PHPBB3-10223
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | | |
* prep-release-3.0.9:
[ticket/10223] Replace spaces with tabs
|
| |\ \ \
| | |/ /
| | | |
| | | |
| | | | |
* naderman/ticket/10223:
[ticket/10223] Replace spaces with tabs
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-10223
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
* rxu/ticket/10227:
[ticket/10227] Allow persistent connections for mysqli with PHP 5.3.0+
|
| | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-10227
|
|\ \ \ \ \
| | |/ / /
| |/| | |
| | | | |
| | | | | |
* prep-release-3.0.9:
[ticket/10232] Renamed S_SEARCH_HIDDEN_FIELDS to S_SEARCH_LOCAL_HIDDEN_FIELDS
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
* naderman/ticket/10232:
[ticket/10232] Renamed S_SEARCH_HIDDEN_FIELDS to S_SEARCH_LOCAL_HIDDEN_FIELDS
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Avoids the global hidden fields from functions.php overwriting local
searches.
PHPBB3-10232
|
|\ \ \ \ \ \
| |/ / / / /
| | | / / /
| |_|/ / /
|/| | | |
| | | | |
| | | | | |
* prep-release-3.0.9:
[ticket/10223] The search fid parameter is an array of forums not just an id
[ticket/10223] Check optional before file_exists and correct require path
[ticket/10223] requiring the new startup.php file conditionally.
|
| |\ \ \ \
| | |_|_|/
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
* naderman/ticket/10223:
[ticket/10223] The search fid parameter is an array of forums not just an id
[ticket/10223] Check optional before file_exists and correct require path
[ticket/10223] requiring the new startup.php file conditionally.
|
| | | |/
| | |/|
| | | |
| | | | |
PHPBB3-10223
|
| | | |
| | | |
| | | |
| | | | |
PHPBB3-10223
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | | |
Added a function for this which we can potentially apply to more of the files in the
installer and database updater.
PHPBB3-10223
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* prep-release-3.0.9:
[ticket/10229] On languge/acp/styles.php "%s" should be %s
|
| |/
| |
| |
| | |
PHPBB3-10229
|
|\ \
| |/
| |
| |
| | |
* prep-release-3.0.9:
[prep-release-3.0.9] Update Changelog for 3.0.9-RC2 release.
|
| | |
|
|\ \
| |/
| |
| |
| | |
* prep-release-3.0.9:
[ticket/10221] Append unit (seconds) after input field, remove from explanation
|
| |
| |
| |
| | |
PHPBB3-10221
|
| | |
|