Nils Adermann
fc9b126691
[ticket/9992] Make sql_create_table and sql_table_exists available in updater
...
These are defined the same way in db_tools. This duplicated code should be
removed together with the rest of the db_tools duplication at some point.
PHPBB3-9992
2011-06-10 11:06:29 +02:00
Andreas Fischer
5a4a1e3c25
[ticket/10126] Use binary "and not" instead of binary "xor" in error_reporting.
...
Make what we want to achieve clear by using "and not" instead of "xor".
PHPBB3-10126
2011-05-11 03:56:15 +02:00
Andreas Fischer
b10654e9a5
Merge branch 'ticket/p/10056' into develop-olympus
...
* ticket/p/10056:
[ticket/10056] Corrected a typo in Firebird name.
2011-02-24 10:35:09 +01:00
Erik Frèrejean
a7bc76d246
[ticket/7778] BBCode single limit
...
There are currently two hard limits for the number of BBCodes
allowed. One is enforced by the type of the `bbcode_id` column,
the other by an hard limit in `acp/acp_bbcode.php`. However this
limit can never be reached due to the size of the database column.
Suggested fix involves adding a new constant to define the max.
number of BBCodes (as with smilies) and chaning the database
column from a tinyint to a smallint to actually allow 1511 BBCodes
PHPBB3-7778
2011-02-23 21:15:40 -05:00
Oleg Pudeyev
a0f6e185ca
[ticket/10056] Corrected a typo in Firebird name.
...
PHPBB3-10056
2011-02-23 20:16:23 -05:00
Joas Schilling
bcbbeacaf8
[ticket/9944] Add empty line before the while() so you can better read the code
...
PHPBB3-9944
2011-02-14 16:40:12 +01:00
Joas Schilling
4890006cbb
[ticket/9944] Extension groups naming don't use users' language in ACP
...
Only happens on boards which were installed with 3.0.8
PHPBB3-9944
2011-01-27 17:24:03 +01:00
Andreas Fischer
2a703b4055
[ticket/9859] Remove years in credit line from some more files.
...
Standard HTML output now includes:
Powered by <a href="http://www.phpbb.com/ ">phpBB</a> © phpBB Group
Print output now includes:
Powered by phpBB © phpBB Group<br />http://www.phpbb.com/
This also fixes an inconsistency where "phpBB Group" was linked instead of
"phpBB".
PHPBB3-9859
2011-01-16 17:53:30 +01:00
Nils Adermann
d2778e67ea
Merge branch 'prep-release-3.0.8' into develop-olympus
...
* prep-release-3.0.8:
[prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelog
[ticket/9903] Script for detecting potentially malicious flash bbcodes
[ticket/9904] Update WebPI Parameters.xml to work with WebMatrix.
[ticket/9903] Fix XSS in BBcode-parser's Flash-BBcode.
Conflicts:
phpBB/includes/constants.php
phpBB/install/database_update.php
phpBB/install/schemas/schema_data.sql
2010-11-20 17:55:56 +01:00
Nils Adermann
af4c2a3eb1
[prep-release-3.0.8] Incrementing version number to 3.0.8 and update changelog
2010-11-19 13:22:36 +01:00
Nils Adermann
b02cec86d4
[develop-olympus] Revert accidental revert of db update lang fix and version
...
Really not my day, is it?
2010-11-11 12:13:51 +01:00
Nils Adermann
396af3853f
[develop-olympus] Remove accidentally added trailing newlines.
2010-11-11 12:07:45 +01:00
Nils Adermann
87aa611a8e
[develop-olympus] Incrementing the version number to 3.0.9-dev.
2010-11-11 11:49:17 +01:00
Joas Schilling
9d55794e33
[ticket/9891] Updater drops language-selection after database-update
...
PHPBB3-9891
2010-11-10 17:56:05 +01:00
Nils Adermann
2ed9b3e1d5
Merge branch 'ticket/nickvergessen/9886' into develop-olympus
...
* ticket/nickvergessen/9886:
[ticket/9886] Update fails on PostgreSQL because of an error in _add_module
2010-11-10 16:16:16 +01:00
Igor Wiedler
c9c19874d6
[ticket/9884] Reduce queue interval to 60 seconds, email package size to 20
...
PHPBB3-9884
2010-11-10 15:50:53 +01:00
Joas Schilling
d722eeb64b
[ticket/9886] Update fails on PostgreSQL because of an error in _add_module
...
PHPBB3-9886
2010-11-09 07:56:37 +01:00
Andreas Fischer
05dce726d0
Merge branch 'ticket/nickvergessen/9888' into develop-olympus
...
* ticket/nickvergessen/9888:
[ticket/9888] Update fails when Bing [Bot] was already added to the users table
2010-11-08 23:41:19 +01:00
Nils Adermann
1a637a3860
Merge branch 'ticket/bantu/9885' into develop-olympus
...
* ticket/bantu/9885:
[ticket/9885] Fix extension group name updater. Loop through all languages.
2010-11-08 23:22:23 +01:00
Joas Schilling
b88f35caef
[ticket/9888] Update fails when Bing [Bot] was already added to the users table
...
Added a check whether the user already exists before we try to add it.
PHPBB3-9888
2010-11-08 23:22:06 +01:00
Nils Adermann
794c0f6b68
[develop-olympus] Bumping version number for 3.0.8-RC1.
2010-11-08 23:21:27 +01:00
Andreas Fischer
f7e37dae86
[ticket/9885] Fix extension group name updater. Loop through all languages.
...
Fix a regression introduced by 58dc5a191c0203ea6d98c37df26b0830b3bf8203.
The problem is that $user->add_lang() includes language strings from the board
root folder instead of the update folder. Because the database updater is run
first, the root folder files have not been upgrade yet. Thus, the language
strings we're looking for cannot be found.
Since the language strings we are looking for have been moved from the
install.php language file to acp/attachments.php it should be possible to
always find them in either file. When there is an acp/attachments.php file in
the update package, it can also be used.
We now also loop through all the installed languages as well, because the board
could have been installed in a language other than the admin's current
language.
PHPBB3-9885
PHPBB3-7717
2010-11-08 14:19:53 +01:00
Nils Adermann
e87a8ef02c
Merge branch 'ticket/igorw/9807' into develop-olympus
...
* ticket/igorw/9807:
[ticket/9807] Update existing module permissions in database
[ticket/9807] Hide avatar tab in UCP when avatars are disabled
2010-10-23 14:08:38 +02:00
Igor Wiedler
b9afa26280
[ticket/9807] Update existing module permissions in database
...
PHPBB3-9807
2010-10-21 10:22:03 +02:00
Igor Wiedler
41245f9f7a
Merge branch 'ticket/bantu/9091' into develop-olympus
...
* ticket/bantu/9091:
[ticket/9091] Extract IPv4 address from addresses mapped into IPv6.
2010-09-16 23:38:50 +02:00
Igor Wiedler
9015e03d05
Merge branch 'ticket/bantu/9613' into develop-olympus
...
* ticket/bantu/9613:
[ticket/9613] Slightly update language strings.
[ticket/9613] Fix missing database part for unread posts search load switch.
[ticket/9613] Implement a load switch for unread posts search feature.
2010-09-16 22:34:48 +02:00
Igor Wiedler
bb191a1d69
[ticket/8944] Add index length to CREATE INDEX for MySQL4 in database_update
...
Fixes following SQL error when updating the database to 3.0.6.
BLOB column 'post_username' used in key specification without a key length
PHPBB3-8944
2010-09-03 22:26:06 +02:00
rxu
b83163634f
[ticket/9613] Fix missing database part for unread posts search load switch.
...
A record for load_unreads_search parameter had to be added to CONFIG_TABLE.
PHPBB3-9613
2010-08-29 16:09:41 +02:00
Josh Woody
68744484c8
Merge branch 'ticket/bantu/9167' into develop-olympus
...
* ticket/bantu/9167:
[ticket/9167] Detect and remove any dead left over shadow topics on update.
[ticket/9167] Remove shadow topics from remaining forums when deleting a forum
Conflicts:
phpBB/install/database_update.php
2010-08-19 10:09:32 -05:00
Andreas Fischer
e5d5d58172
[ticket/9091] Extract IPv4 address from addresses mapped into IPv6.
...
PHPBB3-9091
2010-07-23 12:48:01 +02:00
Andreas Fischer
f92c96d424
Merge branch 'ticket/jellydoughnut/9690' into develop-olympus
...
* ticket/jellydoughnut/9690:
[ticket/9690] Add forthcoming Bing Bot to list of recognized bots
2010-07-08 19:49:22 +02:00
Andreas Fischer
c79df9700d
Merge branch 'ticket/nickvergessen/9578' into develop-olympus
...
* ticket/nickvergessen/9578:
[ticket/9578] ACP Posting tab is missing "Post settings" module.
2010-07-08 02:20:25 +02:00
Josh Woody
d00f2ec183
[ticket/9690] Add forthcoming Bing Bot to list of recognized bots
...
Microsoft will rename MSN Bot to Bing Bot later this year, and change its user agent. This updates phpBB to be aware of Bing Bot
PHPBB3-9690
2010-07-07 15:51:31 -05:00
Andreas Fischer
38fc35a497
[ticket/9167] Detect and remove any dead left over shadow topics on update.
...
PHPBB3-9167
2010-06-11 21:52:04 +02:00
Joas Schilling
4637709f0a
[ticket/9628] _add_module 'after'-parameter does not work correctly.
...
The modules were grouped by left_id so num_modules is always one (hopefully), but the number of rows is the actual value we'd like to know. Removing the GROUP BY resolves the issue.
PHPBB3-9628
2010-05-28 13:13:53 +02:00
Joas Schilling
160d1bfd07
[ticket/9578] ACP Posting tab is missing "Post settings" module.
...
PHPBB3-9578
2010-05-28 13:03:56 +02:00
Joas Schilling
58dc5a191c
[ticket/7717] Localise default extension groups for attachments
...
PHPBB3-7717
2010-05-14 02:42:21 +02:00
Nils Adermann
568fb83373
Merge branch 'master' into develop-olympus
2010-03-06 02:29:04 +01:00
Nils Adermann
39490abfff
Incrementing the version number to 3.0.7-PL1
2010-03-05 21:09:37 +01:00
Nils Adermann
872ad322ec
Increment version number to 3.0.7
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10555 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-28 19:30:58 +00:00
Andreas Fischer
4f439593ce
Merge r10520 into 3.0.7 branch.
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10521 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-22 19:37:09 +00:00
Andreas Fischer
e8f01ff74b
We have to use a 'snapshot' of the function there, because it might not be available yet. - Bug #57755
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10520 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-22 19:33:27 +00:00
Andreas Fischer
5ae48dd873
Bump version to 3.0.7-RC2.
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10506 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 02:14:02 +00:00
Andreas Fischer
19da9ac065
Merge r10503, r10504 into 3.0.7 branch.
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10505 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 02:13:15 +00:00
Andreas Fischer
576722cead
Adding 3.0.7-RC2 to database updater
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10504 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 02:06:20 +00:00
Andreas Fischer
c02fedb6c7
Revising r10499, #57755
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10503 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 02:01:32 +00:00
Andreas Fischer
dccd529498
Merge r10497 and r10499 into 3.0.7 - #57755
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_7@10502 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 01:40:51 +00:00
Andreas Fischer
30b83896a1
Fix Bug #57755 - Make user_email_hash() function independent from system's architecture.
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10499 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-18 01:17:30 +00:00
Andreas Fischer
68cac354aa
Add 3.0.7-RC1 to the updater.
...
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10497 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-17 12:58:52 +00:00
Nils Adermann
1802b9ff92
Support for Microsoft's Native SQL Server Driver for PHP - Patch by Chris Pucci at Microsoft [Bug #57055 ]
...
If you are using SQL Server, please try to test this new dbal so we can safely include it in 3.0.8. If you
want to try it on a current phpBB version you can apply the latest version of the patch to your board which
you can find attached to the bug tracker ticket (look in the comments for the latest version, the one in the
ticket itself is outdated): http://www.phpbb.com/bugs/phpbb3/ticket.php?ticket_id=57055
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10489 89ea8834-ac86-4346-8a33-228a782c2dd0
2010-02-11 00:02:51 +00:00