aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/index.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/15738] Remove code related with safe_modeRubén Calvo2019-05-091-1/+0
| | | | PHPBB3-15738
* [ticket/10961] Send HTTP 403 when applicableJakub Senko2016-09-011-0/+1
| | | | PHPBB3-10961
* [ticket/13455] Update calls to `request_var()`Gaëtan Muller2015-02-031-2/+2
| | | | PHPBB3-13455
* Merge remote-tracking branch 'upstream/develop-ascraeus' into ticket/12594Yuriy Rusko2014-05-281-1/+7
|\
| * [ticket/12509] Add missing ',' in arraysTristan Darricau2014-05-261-1/+1
| | | | | | | | PHPBB3-12509
| * [ticket/12509] Fix path in adm/index.phpTristan Darricau2014-05-141-1/+1
| | | | | | | | PHPBB3-12509
| * [ticket/12509] Fix typo in adm/index.phpTristan Darricau2014-05-141-1/+1
| | | | | | | | PHPBB3-12509
| * [ticket/12509] Fix the call to set_custom_file in adm/index and messengerTristan Darricau2014-05-131-2/+4
| | | | | | | | PHPBB3-12509
| * [ticket/12509] Update acp custom_style setterTristan Darricau2014-05-131-1/+5
| | | | | | | | PHPBB3-12509
* | [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-3/+7
|/ | | | PHPBB3-12594
* [ticket/11791] Load adm/ events from styles/adm/event/Nathan Guse2013-09-021-1/+1
| | | | PHPBB3-11791
* [ticket/11628] Remove template_path option on set_custom_styleNathaniel Guse2013-07-241-1/+1
| | | | | | | | | This was set to default 'template/' to append template/ to all the paths, but every location was actually just setting it to '' to not append anything. So removed the option entirely (additional paths can be appended to the paths being sent to the function already) PHPBB3-11628
* [ticket/11628] Remove third parameter ($names) from set_custom_styleNathaniel Guse2013-07-241-1/+1
| | | | | | | | This was basically duplicating functionality. $names would be used if not empty, else array($name) would be used. Merged functionality into the first argument PHPBB3-11628
* [ticket/11628] Remove phpbb_style (move methods to phpbb_template)Nathaniel Guse2013-07-241-1/+1
| | | | PHPBB3-11628
* [ticket/11549] Do not set extension dir path for style in adm/index.phpJoas Schilling2013-05-311-1/+0
| | | | | | | As we don't want style files in adm/adm/style/ we should not prepend the adm/ by setting it. Note, we did that correctly in adm/swatch.php. PHPBB3-11549
* Merge PR #1130 branch 'EXreaction/ticket/11259' into developOleg Pudeyev2012-12-291-1/+0
|\ | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/11259: [ticket/11259] htmlspecialchars($phpbb_admin_path) [ticket/11259] adm_relative_path -> phpbb_adm_relative_path [ticket/11259] Also make adm_relative_path available in the container [ticket/11259] Make phpbb_admin_path available everywhere Conflicts: phpBB/install/index.php phpBB/install/install_update.php
| * [ticket/11259] Make phpbb_admin_path available everywhereNathan Guse2012-12-091-1/+0
| | | | | | | | PHPBB3-11259
* | [feature/template-events] Convert a single style name to array of them.Oleg Pudeyev2012-11-171-1/+1
|/ | | | | | | This allows template code to know the entire style hierarchy for templates being rendered. PHPBB3-9550
* [ticket/10754] Changing $style to $phpbb_styleVjacheslav Trushkin2012-04-031-2/+2
| | | | | | Renaming global variable $style to $phpbb_style PHPBB3-10754
* [feature/merging-style-components] Updating style initializationVjacheslav Trushkin2012-03-151-3/+3
| | | | | | Changing template initialization to style initialization. PHPBB3-10632
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | PHPBB3-9916
* [feature/extension-manager] Add support for templates in extensions.Nils Adermann2011-09-291-0/+1
| | | | | | | | | | | | | | | | | | This commit adds a template path provider to separate the process of locating (cached) paths in extensions from the template engine. The locator is supplied with a list of paths from the path provider. Admin templates can now be created in ext/<ext>/adm/style/ and regular templates go into ext/<ext>/styles/<style>/template/. Extension templates override regular templates. So if an extension supplies a file with a name used in phpBB, the extension's file will be used. A side-effect of this commit: Locator and Provider are now able to deal with arbitrary levels of template inheritance. So we can expose this through phpbb_template if we choose to, and allow styles to inherit from inherited styles. PHPBB3-10323
* [feature/remove-db-styles] Removed database storage of style components.Chris Smith2011-09-201-3/+0
| | | | | | | | | | | | The bulk of database storage of templates is removed, rendering template stored in the database as useless. Theme database storage is reduced to a skeleton for full removal soon. This commit was cherry picked from the old feature/ascraeus-experiment branch the old commit hash is 0dbe7e3b6cd450342d3c566eb2caf36ca1b5db8e. PHPBB3-9741
* [ticket/10155] Add jQuery, introduce global assets pathIgor Wiedler2011-07-111-0/+1
| | | | | | | | | | | Add the jQuery JavaScript library to all pages, giving modifications instant access and allowing for any future core JavaScript to take advantage of it. Also introduce a global /assets directory for assets that are shared between styles. PHPBB3-10155
* [ticket/9823] Moving the functions. Unit tests for build_select.Joas Schilling2011-02-011-537/+1
| | | | PHPBB3-9823
* [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
* [feature/request-class] Convert any direct access to $_* to use $requestIgor Wiedler2010-09-251-1/+2
| | | | PHPBB3-9716
* [ticket/8935] Prevent setting maximum avatar dimensions less than the minimums.Chris Smith2010-09-091-0/+14
| | | | | | | | This change actually applies to any configruation setting that is a pair of values one representing the maximum and one minimum. This change enforces that the maximum value cannot be less than the minimum value. PHPBB3-8935
* [ticket/9519] Replace remaining is_writable() calls with phpbb_is_writable().Joas Schilling2010-08-131-1/+1
| | | | PHPBB3-9519
* Revert revisions r10176 and r9647 - Bug #45975, #51505Meik Sievertsen2009-09-301-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10200 89ea8834-ac86-4346-8a33-228a782c2dd0
* ok, i am very sorry, but this needs to be fixed.Meik Sievertsen2009-08-121-11/+7
| | | | | | | | | Generally, our config table is not really suited for holding large datasets. Because feed settings for the forums to enable news feeds and excluded forums rely on the forums itself we have decided to introduce a forum_options table where custom options can be stored. Additionally, for this to work across all DBMS we support, we added a new method to the DBAL for the bitwise AND operator. Also moved the forum/topic feed template variable to the location where they belong to (forum and topic view) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9965 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fixed bug #45975Gabriel Vazquez2009-06-211-1/+1
| | | | | | Authorised by: AcydBurn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9647 89ea8834-ac86-4346-8a33-228a782c2dd0
* add support for multiple_select Meik Sievertsen2009-03-161-10/+20
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9369 89ea8834-ac86-4346-8a33-228a782c2dd0
* Too much for a minor; sorryHenry Sudhof2008-06-041-9/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8591 89ea8834-ac86-4346-8a33-228a782c2dd0
* a little polishHenry Sudhof2008-06-031-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8585 89ea8834-ac86-4346-8a33-228a782c2dd0
* give the ACP a login screenHenry Sudhof2008-06-021-2/+9
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8581 89ea8834-ac86-4346-8a33-228a782c2dd0
* ACP logoutHenry Sudhof2008-06-021-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8580 89ea8834-ac86-4346-8a33-228a782c2dd0
* I'm going to get an award for the smallest commit ever.Vic D'Elfant2008-05-291-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8578 89ea8834-ac86-4346-8a33-228a782c2dd0
* #22865Meik Sievertsen2008-03-131-7/+8
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8428 89ea8834-ac86-4346-8a33-228a782c2dd0
* Adding new validation options for ACP valuesHenry Sudhof2008-02-271-6/+94
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8406 89ea8834-ac86-4346-8a33-228a782c2dd0
* some language/style/code fixes (refer to the diff of the changelog)Meik Sievertsen2008-02-231-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8389 89ea8834-ac86-4346-8a33-228a782c2dd0
* A few very minor changes to avoid curveballs.Henry Sudhof2008-01-021-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8292 89ea8834-ac86-4346-8a33-228a782c2dd0
* Some issues with change_lang and VC / form tokensHenry Sudhof2008-01-021-2/+2
| | | | | | | | | | | | Small stuff. #18325 #17415 #17085 #16515 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8291 89ea8834-ac86-4346-8a33-228a782c2dd0
* - change adm/index,php, acp_attachments.html and acp_ban.html to be ↵Meik Sievertsen2007-12-121-2/+2
| | | | | | triggered by the next update git-svn-id: file:///svn/phpbb/trunk@8277 89ea8834-ac86-4346-8a33-228a782c2dd0
* dumdidum... sorry. ;)Meik Sievertsen2007-10-051-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@8146 89ea8834-ac86-4346-8a33-228a782c2dd0
* some fixes. :PMeik Sievertsen2007-09-181-1/+1
| | | | | | | - language authors may review their email template files... git-svn-id: file:///svn/phpbb/trunk@8092 89ea8834-ac86-4346-8a33-228a782c2dd0
* necessary changes...Meik Sievertsen2007-08-301-6/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@8072 89ea8834-ac86-4346-8a33-228a782c2dd0
* forgot this line...Meik Sievertsen2007-08-241-1/+4
| | | | git-svn-id: file:///svn/phpbb/trunk@8065 89ea8834-ac86-4346-8a33-228a782c2dd0
* - allow multibyte search configurationNils Adermann2007-08-181-1/+1
| | | | | | | | | - added ldap_user_filter to add additional restrictions on the user objects used for authentication [Bug #12627] - improved ldap explanations a bit - display searchable subforums of invisible parents in advanced search forum selection [Bug #11395] git-svn-id: file:///svn/phpbb/trunk@8047 89ea8834-ac86-4346-8a33-228a782c2dd0
* do not get too excitedMeik Sievertsen2007-07-261-1/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@7954 89ea8834-ac86-4346-8a33-228a782c2dd0