aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/add_permissions.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #5802 from 3D-I/ticket/16279Marc Alexander2020-01-021-0/+1
|\ | | | | | | [ticket/16279] Add permission for Emoji in topic title
| * [ticket/16279] Add permission for Emoji in topic title3D-I2019-12-301-0/+1
| | | | | | | | PHPBB3-16279
* | [ticket/16051] Remove mysql driver as it's no longer supported in PHP >= 7.0Marc Alexander2019-10-061-7/+2
|/ | | | PHPBB3-16051
* [ticket/14972] replace all occurrences of sizeof() with the count()rxu2018-01-011-2/+2
| | | | PHPBB3-14972
* [ticket/14739] Remove SQLite 2.8.x database driverJakub Senko2016-11-161-1/+0
| | | | PHPBB3-14739
* [ticket/10809] Remove MSSQL supportJakub Senko2016-08-021-1/+0
| | | | PHPBB3-10809
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-3/+3
| | | | | | This is part 2 of the pr. PHPBB3-13454
* [ticket/8708] Add f_announce_global permissionOliver Schramm2015-07-191-0/+1
| | | | PHPBB3-8708
* [ticket/13597] Modify variable-variable syntax to be compatible with PHP7Marc Alexander2015-02-111-2/+2
| | | | PHPBB3-13597
* [ticket/12446] Unnecessary db connect inphpbb_bootstrap_enabled_extsTristan Darricau2014-06-261-1/+1
| | | | PHPBB3-12446
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
| | | | PHPBB3-12594
* [feature/sqlite3] Add support for SQLite 3Patrick Webster2014-05-021-0/+1
| | | | | | | Minimum version requirement is 3.6.15 as that's what ships with PHP 5.3.0 when support for SQLite 3 was added. PHPBB3-9728
* Merge PR #799 branch 'develop-olympus' into developOleg Pudeyev2012-05-101-11/+7
|\ | | | | | | | | * develop-olympus: [ticket/10881] Replace old (and unify) file headers in develop files.
| * [ticket/10881] Replace old (and unify) file headers in develop files.Andreas Fischer2012-05-101-11/+7
| | | | | | | | | | | | | | | | This especially also fixes the problem of the copyright symbol being represented using 0xA9, which is neither ASCII nor the appropriate UTF8 byte sequence for the copyright symbol. PHPBB3-10881
* | [ticket/9556] Drop php closing tags, add trailing newlineIgor Wiedler2010-11-111-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | Closing tags converted using Oleg's script. remove-php-end-tags.py -a . Trailing newlines added using the following where $ext is file extension. find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s; Extensions: php, css, html, js, xml. PHPBB3-9556
* | Copy 3.0.x branch to trunkMeik Sievertsen2009-10-041-0/+417
| | | | | | | | git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
* | remove no longer necessary files... hoorayMeik Sievertsen2008-12-241-396/+0
| | | | | | | | git-svn-id: file:///svn/phpbb/trunk@9221 89ea8834-ac86-4346-8a33-228a782c2dd0
* | ok... i hope i haven't messed too much with the code and everything is still ↵Meik Sievertsen2008-05-291-27/+6
| | | | | | | | | | | | | | | | | | | | working. Changes: - Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed. - A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added. git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
* | Alright, this should give some improved performance :)David M2008-02-031-1/+1
|/ | | | | | | | | | | | | | | | | | This is the end of random seek access to rows. If you have a compelling reason as to why they should stay, contact me. Else, they are gone forevermore... The following API calls are deprecated: acm::sql_rowseek() -> no replacement $db->sql_fetchfield($field, $rownum = false, $query_id = false) -> $db->sql_fetchfield($field, $query_id = false) Initial tests show that phpBB3 over four percent of memory against phpBB3.1 on an empty board. So far so good :) Other cool things: db2, MS SQL ODBC and MS SQL 2005 all use less memory because they do not need to reference the last executed query to handle random access seeks :) P.S. The crazy people using SVN: please report any issues with the new way we itterate through caches, I do not want to miss anything :) git-svn-id: file:///svn/phpbb/trunk@8372 89ea8834-ac86-4346-8a33-228a782c2dd0
* changed the cache files to save some memory (all global ones are hold in ↵Meik Sievertsen2007-04-221-1/+1
| | | | | | memory, doubling it). git-svn-id: file:///svn/phpbb/trunk@7386 89ea8834-ac86-4346-8a33-228a782c2dd0
* - store sql_layer directly within the layer itselfMeik Sievertsen2006-10-141-1/+1
| | | | | | | | - new method sql_multi_insert to circumvent db-specific hacks (hopefully not introduced any parsing errors) git-svn-id: file:///svn/phpbb/trunk@6497 89ea8834-ac86-4346-8a33-228a782c2dd0
* change ACL_NO to ACL_NEVER and ACL_UNSET to ACL_NO to let our users get what ↵Meik Sievertsen2006-06-221-11/+11
| | | | | | | | | is meant on the first look. the downside is that the information is no more accurate (permissions are still unset, defaulting to no) - someone might to overlook all explanations. :) git-svn-id: file:///svn/phpbb/trunk@6115 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, sorry for this. :/Meik Sievertsen2006-06-071-3/+3
| | | | | | | - cleaned up table names/constants git-svn-id: file:///svn/phpbb/trunk@6021 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, this one is rather large... the most important change:Meik Sievertsen2006-06-061-1/+1
| | | | | | | | | re-introduce append_sid: old style continues to work, not a performance hog as it was in 2.0.x -> structure is different apart from this, code cleanage, bug fixing, etc. git-svn-id: file:///svn/phpbb/trunk@6015 89ea8834-ac86-4346-8a33-228a782c2dd0
* - changed SUPER_MODERATORS to GLOBAL_MODERATORSMeik Sievertsen2006-04-301-3/+1
| | | | | | | | - do not cache moderators having no allowed auth settings - added fsock method to transfer class (this has been made by wGEric for us) git-svn-id: file:///svn/phpbb/trunk@5870 89ea8834-ac86-4346-8a33-228a782c2dd0
* - changed _module_*_url to only use the main module name but the mode as ↵Meik Sievertsen2006-04-081-6/+0
| | | | | | | | | | | | parameter - custom module lang function now suffixed by _lang - added general custom function with mode and module_row parameter - do not display friends/foes if zebra has been disabled git-svn-id: file:///svn/phpbb/trunk@5767 89ea8834-ac86-4346-8a33-228a782c2dd0
* - removed unnecessary pm optionsMeik Sievertsen2005-01-211-2/+15
| | | | | | | - added one option to clearly define email visibility git-svn-id: file:///svn/phpbb/trunk@5071 89ea8834-ac86-4346-8a33-228a782c2dd0
* - script to add missing permissionsMeik Sievertsen2004-11-061-0/+412
git-svn-id: file:///svn/phpbb/trunk@5021 89ea8834-ac86-4346-8a33-228a782c2dd0