Andreas Fischer
4c765bb206
Merge remote-tracking branch 'igorw/ticket/10365' into develop-olympus
...
* igorw/ticket/10365:
[ticket/10365] Fix up S_POST_UNAPPROVED check, make it easier to read
[ticket/10365] Require m_report permission to see reports in mcp_post
[ticket/10365] Make sure moderators only get mcp_reports link when allowed
2011-11-13 15:47:30 +01:00
Igor Wiedler
52bd8c307f
[ticket/10365] Fix up S_POST_UNAPPROVED check, make it easier to read
...
PHPBB3-10365
2011-11-13 15:37:26 +01:00
Andreas Fischer
f3c9133a6c
Merge remote-tracking branch 'nickvergessen/ticket/10237' into develop-olympus
...
* nickvergessen/ticket/10237:
[ticket/10237] Display login-box for guests, when (un)subscribing
2011-11-11 22:07:11 +01:00
Joas Schilling
1a19388aa3
[ticket/10237] Display login-box for guests, when (un)subscribing
...
Also initialise $is_watching for PHP Notice: Undefined variable is_watching
PHPBB3-10237
2011-11-06 23:51:29 +01:00
Andreas Fischer
0b1199f7b2
Merge remote-tracking branch 'nickvergessen/ticket/9036' into develop-olympus
...
* nickvergessen/ticket/9036:
[ticket/9036] Add template variable 'S_AUTH_READ' to forumlist
2011-11-01 20:08:17 +01:00
Igor Wiedler
18ca3a32bc
[ticket/10365] Require m_report permission to see reports in mcp_post
...
This was exposed to anyone with m_ perms in mcp_post_details.
PHPBB3-10365
2011-10-30 19:10:58 +01:00
Igor Wiedler
d6c3e7785d
[ticket/10365] Make sure moderators only get mcp_reports link when allowed
...
The m_report permission is not not being checked when displaying the link to
mcp_reports.
PHPBB3-10365
2011-10-30 19:10:57 +01:00
Joas Schilling
da8cac280c
[ticket/9036] Add template variable 'S_AUTH_READ' to forumlist
...
PHPBB3-9036
2011-10-29 16:26:17 +02:00
Igor Wiedler
6d913d3646
Merge remote-tracking branch 'cs278/ticket/9307' into develop-olympus
...
* cs278/ticket/9307:
[ticket/9307] Add config variable to installation schema.
[ticket/9307] Remove hardcoded chunk size of mass emails.
2011-10-29 13:01:03 +02:00
Igor Wiedler
319d12bedf
Merge remote-tracking branch 'bantu/ticket/10420' into develop-olympus
...
* bantu/ticket/10420:
[ticket/10420] Update includes/startup.php for PHP 5.4.
2011-10-29 12:37:16 +02:00
Igor Wiedler
020106eeb9
Merge remote-tracking branch 'bantu/ticket/10421' into develop-olympus
...
* bantu/ticket/10421:
[ticket/10421] Correct parameter order for phpbb_check_hash() in acp_users.php
2011-10-29 12:32:25 +02:00
Andreas Fischer
ba1464b6e0
[ticket/10421] Correct parameter order for phpbb_check_hash() in acp_users.php
...
PHPBB3-10421
2011-10-18 21:25:27 +02:00
Andreas Fischer
cd184e4912
[ticket/10420] Update includes/startup.php for PHP 5.4.
...
PHP 5.4 dropped support for register globals and magic quotes.
Calling set_magic_quotes_runtime() on PHP 5.4 actually results in an
E_CORE_ERROR error.
PHPBB3-10420
2011-10-18 21:16:42 +02:00
Andreas Fischer
8f6cfc77d2
[ticket/10259] Do not send notifications to user accounts joining free groups.
...
It does not make sense to send notifications to users joining a freely open
group. They already know that they were added to the group, because they
triggered the actual join.
PHPBB3-10259
2011-10-17 19:10:41 +02:00
Andreas Fischer
cfb5135805
Merge remote-tracking branch 'nickvergessen/ticket/9525' into develop-olympus
...
* nickvergessen/ticket/9525:
[ticket/9525] Minimum post length 0 is accepted but not working.
2011-10-17 16:43:58 +02:00
Nils Adermann
7813135365
Merge remote-tracking branch 'github-igorw/ticket/10377' into develop-olympus
...
* github-igorw/ticket/10377:
[ticket/10377] Do not allow all moderators to sticky posts
2011-10-14 17:56:38 +02:00
Igor Wiedler
cafefe9379
Merge remote-tracking branch 'bantu/ticket/10327' into develop-olympus
...
* bantu/ticket/10327:
[ticket/10327] Use $this->tools instead of creating a new instance of db_tools.
[ticket/10327] Also change CREATE UNIQUE INDEX to use ALTER TABLE.
2011-10-14 17:50:08 +02:00
Igor Wiedler
27279afa1e
[ticket/10377] Do not allow all moderators to sticky posts
...
In the mcp the change_topic_type does not properly check permissions,
allowing moderators to make any post sticky or announced by visiting the
correct URL.
PHPBB3-10377
2011-10-14 17:37:12 +02:00
Andreas Fischer
7e18d2b861
[ticket/10327] Also change CREATE UNIQUE INDEX to use ALTER TABLE.
...
PHPBB3-10327
2011-10-14 17:23:21 +02:00
Andreas Fischer
4effe8fb8b
[ticket/8240] Add ability to get a list of columns of a tables to db_tools.
...
PHPBB3-8240
2011-10-14 16:35:14 +02:00
Andreas Fischer
234edf674c
[ticket/8240] Add ability to get a list of tables to db_tools.
...
PHPBB3-8240
2011-10-14 16:35:07 +02:00
Joas Schilling
e40abfbde9
[ticket/9525] Minimum post length 0 is accepted but not working.
...
PHPBB3-9525
2011-10-14 15:19:47 +02:00
Igor Wiedler
1657339e6d
Merge remote-tracking branch 'bantu/ticket/10327' into develop-olympus
...
* bantu/ticket/10327:
[ticket/10327] Change CREATE INDEX to ALTER TABLE table ADD INDEX for MySQL.
2011-10-14 14:34:44 +02:00
Andreas Fischer
d86fccf9c9
[ticket/10327] Change CREATE INDEX to ALTER TABLE table ADD INDEX for MySQL.
...
* CREATE INDEX is internally mapped to an ALTER INDEX statement.
* CREATE INDEX requires the INDEX permission.
* ALTER TABLE requires the (more powerful) ALTER permission.
* We require the ALTER permission anyway for operation.
* Changing CREATE INDEX to ALTER TABLE thus removes dependency on the INDEX
permission which is good because some management software does not give
out the INDEX permission by default.
http://dev.mysql.com/doc/refman/5.0/en/create-index.html
PHPBB3-10327
2011-10-14 14:30:51 +02:00
Nils Adermann
768932a3f2
[ticket/10212] Return a CAPTCHA on incorrect username for ip limited users too
...
PHPBB3-10212
2011-10-14 03:41:52 +02:00
Nils Adermann
d16b160d5c
Merge remote-tracking branch 'github-nickvergessen/ticket/10074' into develop-olympus
...
* github-nickvergessen/ticket/10074:
[ticket/10074] Change default value of 'Set as special rank' to No
2011-10-14 02:55:05 +02:00
Nils Adermann
dda1e13126
Merge remote-tracking branch 'github-bantu/ticket/10278' into develop-olympus
...
* github-bantu/ticket/10278:
[ticket/10278] Show VERSIONCHECK_FAIL instead of FSOCK_TIMEOUT.
[ticket/10278] Also timeout when receiving data over a slow connection.
[ticket/10278] Decrease default timeout of get_remote_file() to 6 seconds.
[ticket/10278] Return with a timeout error when fread() or fgets() time out.
[ticket/10278] Also set timeout on stream in get_remote_file().
2011-10-14 02:47:45 +02:00
Joas Schilling
1f677d5de3
[ticket/10074] Change default value of 'Set as special rank' to No
...
PHPBB3-10074
2011-10-14 02:41:37 +02:00
Andreas Fischer
4e69fe6859
Merge remote-tracking branch 'igorw/ticket/10307' into develop-olympus
...
* igorw/ticket/10307:
[ticket/10307] Add a test for PHPBB3-10307
[ticket/10307] Return false in mysqli sql_fetchrow on empty result
2011-10-13 23:44:42 +02:00
Andreas Fischer
1dc1583b92
[ticket/10278] Show VERSIONCHECK_FAIL instead of FSOCK_TIMEOUT.
...
PHPBB3-10278
2011-10-13 18:23:33 +02:00
Andreas Fischer
091119605a
[ticket/10278] Also timeout when receiving data over a slow connection.
...
PHPBB3-10278
2011-10-13 18:03:02 +02:00
Andreas Fischer
4c1bde350a
Merge remote-tracking branch 'nickvergessen/ticket/10304' into develop-olympus
...
* nickvergessen/ticket/10304:
[ticket/10304] Fix URL for ICQ while view private messages
2011-10-13 17:07:28 +02:00
Andreas Fischer
4b42646f36
Merge remote-tracking branch 'nickvergessen/ticket/10400' into develop-olympus
...
* nickvergessen/ticket/10400:
[ticket/10400] Allow forum name to be '0'
2011-10-13 17:05:01 +02:00
Igor Wiedler
3cd8c2507d
[ticket/10307] Return false in mysqli sql_fetchrow on empty result
...
PHPBB3-10307
2011-10-13 16:43:11 +02:00
Joas Schilling
f94f872624
[ticket/10304] Fix URL for ICQ while view private messages
...
PHPBB3-10304
2011-10-13 13:59:39 +02:00
Joas Schilling
cacb9f2ec5
[ticket/10400] Allow forum name to be '0'
...
PHPBB3-10400
2011-10-07 09:44:31 +02:00
Vjacheslav Trushkin
b38fbc6d25
[ticket/10397] Pagination inconsistency fix
...
Fixing topic_generate_pagination()
PHPBB3-10397
2011-10-04 12:24:42 +03:00
Vjacheslav Trushkin
12882084d4
[ticket/10397] Pagination inconsistency fix
...
Fixing inconsistency in code generated by generate_pagination()
PHPBB3-10397
2011-10-04 11:55:25 +03:00
Chris Smith
138d1050fc
[ticket/9307] Remove hardcoded chunk size of mass emails.
...
The new config option is 'email_max_chunk_size' I have not added
an interface option to change this.
PHPBB3-9307
2011-09-24 22:05:40 +01:00
Andreas Fischer
79ad3a3f32
[ticket/10370] Add function documentation for get_stacktrace().
...
PHPBB3-10370
2011-09-19 17:45:32 +02:00
Andreas Fischer
fc2af460ee
[ticket/10370] Explain that we are not the ones hiding backtrace pieces.
...
Taken from 2db54cf7e809e731e4440377bcc06e2aa05f190d.
PHPBB3-10370
2011-09-19 17:37:16 +02:00
Andreas Fischer
19ce73c884
[ticket/10370] Call htmlspecialchars() after phpbb_filter_root_path().
...
PHPBB3-10370
2011-09-19 17:37:16 +02:00
Andreas Fischer
8a84f42f7d
[ticket/10370] Add require_once to whitelisted functions.
...
PHPBB3-10370
2011-09-19 17:37:15 +02:00
Andreas Fischer
7965387201
[ticket/10370] Use single string instead of an array for arguments.
...
PHPBB3-10370
2011-09-19 17:37:15 +02:00
Andreas Fischer
0df7e5eefa
[ticket/10370] Ease up code checking for arguments of include etc.
...
PHPBB3-10370
2011-09-19 17:37:10 +02:00
Andreas Fischer
12530a763b
[ticket/10370] Use unset() on the first backtrace instead of checking in loop.
...
PHPBB3-10370
2011-09-19 16:58:25 +02:00
Andreas Fischer
9c0f75fd65
[ticket/10370] Use phpbb_filter_root_path() in get_backtrace().
...
PHPBB3-10370
2011-09-19 16:57:09 +02:00
Nils Adermann
410028eecf
Merge remote-tracking branch 'github-bantu/ticket/10245' into develop-olympus
...
* github-bantu/ticket/10245:
[ticket/10245] Use error_collector instead of ob_start() and ob_get_clean().
2011-09-18 23:25:04 +02:00
Andreas Fischer
1b390f0b49
[ticket/10369] Replace root path with "[ROOT]" as per IRC.
...
PHPBB3-10369
2011-09-18 23:03:28 +02:00
Andreas Fischer
c8564e6ce9
[ticket/10369] Add warning about paths outside of phpBB root not being filtered
...
PHPBB3-10369
2011-09-18 22:41:02 +02:00