aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
Commit message (Collapse)AuthorAgeFilesLines
* [feature/remove-db-styles] Add error if template/theme file is unwritable.Chris Smith2011-09-202-29/+26
| | | | PHPBB3-9741
* [feature/remove-db-styles] Add schema changes sinces 3.0.x.Chris Smith2011-09-201-1/+10
| | | | PHPBB3-9741
* [feature/remove-db-styles] Readd table constant for upgrades etc.Chris Smith2011-09-201-0/+1
| | | | | | Removed in f23b224b946b37c171add5953e832641bbb3a5c3. PHPBB3-9741
* [feature/remove-db-styles] Update database schemas.Chris Smith2011-09-209-149/+5
| | | | | | | | | | | | Removes: * styles_template_data table * template_storedb on styles_template table * On styles_theme table: - theme_storedb - theme_mtime - theme_data PHPBB3-9741
* [feature/remove-db-styles] Remove style.php DB storage.Chris Smith2011-09-203-69/+6
| | | | | | | | | | | Removed all use of the DB for serving/caching the theme from style.php, acp_style no longer stores the theme modified time either. As a consequence currently all stylesheets will be served through style.php (with no caching) until imagesets are removed [PHPBB3-10336], then they can we served as static files by HTTPd. PHPBB3-9741
* [feature/remove-db-styles] Remove parse_css_file option from themes.Chris Smith2011-09-202-7/+0
| | | | PHPBB3-9741
* [feature/remove-db-styles] Remove DB theme handling code from session.Chris Smith2011-09-201-49/+2
| | | | PHPBB3-9741
* [feature/remove-db-styles] ACP has forgotten how to store themes in the DB.Chris Smith2011-09-201-120/+22
| | | | PHPBB3-9741
* [feature/remove-db-styles] Missed a few template DB bits in acp_styles.Chris Smith2011-09-201-23/+3
| | | | PHPBB3-9741
* [feature/remove-db-styles] Removing unused methods from acp_style.Chris Smith2011-09-201-176/+0
| | | | | | These got left behind in 6854d47. PHPBB3-9741
* [feature/remove-db-styles] Removed database storage of style components.Chris Smith2011-09-209-373/+30
| | | | | | | | | | | | 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/10371] Removing last mentions of imagesetVjacheslav Trushkin2011-09-202-15/+1
| | | | | | Removing last mentions of imageset PHPBB3-10371
* Merge remote-tracking branch 'github-cyberalien/feature/remove-imagesets' ↵Nils Adermann2011-09-20210-2294/+1558
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | into develop * github-cyberalien/feature/remove-imagesets: [feature/remove-imagesets] Script for converting imageset to css [feature/remove-imagesets] Changing subsilver [feature/remove-imagesets] Changing prosilver [feature/remove-imagesets] Adjustments to php files [feature/remove-imagesets] Changing admin control panel styles module [feature/remove-imagesets] Changing database structure [feature/remove-imagesets] Removing imageset files [feature/remove-imagesets] Moving images
| * [feature/remove-imagesets] Script for converting imageset to cssVjacheslav Trushkin2011-09-041-0/+274
| | | | | | | | | | | | Removing imagesets. Script for converting imageset to css PHPBB3-10336
| * [feature/remove-imagesets] Changing subsilverVjacheslav Trushkin2011-09-0421-55/+598
| | | | | | | | | | | | Removing imagesets. Changing subsilver PHPBB3-10336
| * [feature/remove-imagesets] Changing prosilverVjacheslav Trushkin2011-09-0410-154/+617
| | | | | | | | | | | | Removing imagesets. Changing prosilver PHPBB3-10336
| * [feature/remove-imagesets] Adjustments to php filesVjacheslav Trushkin2011-09-0412-342/+16
| | | | | | | | | | | | Removing imagesets. Adjustments to php files PHPBB3-10336
| * [feature/remove-imagesets] Changing admin control panel styles moduleVjacheslav Trushkin2011-09-035-985/+33
| | | | | | | | | | | | Removing imagesets. Changing admin control panel styles module PHPBB3-10336
| * [feature/remove-imagesets] Changing database structureVjacheslav Trushkin2011-09-0312-460/+20
| | | | | | | | | | | | Removing imagesets. Changing database structure PHPBB3-10336
| * [feature/remove-imagesets] Removing imageset filesVjacheslav Trushkin2011-09-036-298/+0
| | | | | | | | | | | | Removing imagesets. Removing imageset files PHPBB3-10336
| * [feature/remove-imagesets] Moving imagesVjacheslav Trushkin2011-09-03143-0/+0
| | | | | | | | | | | | Removing imagesets. Moving images PHPBB3-10336
* | Merge branch 'develop-olympus' into developNils Adermann2011-09-191-37/+20
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10370] Add function documentation for get_stacktrace(). [ticket/10370] Explain that we are not the ones hiding backtrace pieces. [ticket/10370] Call htmlspecialchars() after phpbb_filter_root_path(). [ticket/10370] Add require_once to whitelisted functions. [ticket/10370] Use single string instead of an array for arguments. [ticket/10370] Ease up code checking for arguments of include etc. [ticket/10370] Use unset() on the first backtrace instead of checking in loop. [ticket/10370] Use phpbb_filter_root_path() in get_backtrace().
| * | [ticket/10370] Add function documentation for get_stacktrace().Andreas Fischer2011-09-191-1/+6
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Explain that we are not the ones hiding backtrace pieces.Andreas Fischer2011-09-191-2/+3
| | | | | | | | | | | | | | | | | | Taken from 2db54cf7e809e731e4440377bcc06e2aa05f190d. PHPBB3-10370
| * | [ticket/10370] Call htmlspecialchars() after phpbb_filter_root_path().Andreas Fischer2011-09-191-2/+1
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Add require_once to whitelisted functions.Andreas Fischer2011-09-191-1/+1
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Use single string instead of an array for arguments.Andreas Fischer2011-09-191-3/+3
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Ease up code checking for arguments of include etc.Andreas Fischer2011-09-191-14/+7
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Use unset() on the first backtrace instead of checking in loop.Andreas Fischer2011-09-191-7/+4
| | | | | | | | | | | | PHPBB3-10370
| * | [ticket/10370] Use phpbb_filter_root_path() in get_backtrace().Andreas Fischer2011-09-191-14/+2
| | | | | | | | | | | | PHPBB3-10370
* | | Merge branch 'develop-olympus' into developNils Adermann2011-09-181-5/+21
|\ \ \ | |/ / | | | | | | | | | * develop-olympus: [ticket/10245] Use error_collector instead of ob_start() and ob_get_clean().
| * | Merge remote-tracking branch 'github-bantu/ticket/10245' into develop-olympusNils Adermann2011-09-181-5/+21
| |\ \ | | | | | | | | | | | | | | | | * github-bantu/ticket/10245: [ticket/10245] Use error_collector instead of ob_start() and ob_get_clean().
| | * | [ticket/10245] Use error_collector instead of ob_start() and ob_get_clean().Andreas Fischer2011-09-181-5/+21
| | | | | | | | | | | | | | | | PHPBB3-10245
* | | | Merge branch 'develop-olympus' into developNils Adermann2011-09-182-8/+32
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | * develop-olympus: [ticket/10369] Replace root path with "[ROOT]" as per IRC. [ticket/10369] Add warning about paths outside of phpBB root not being filtered [ticket/10369] Rename filter_errfile() to filter_root_path(). [ticket/10369] DRY code to remove phpbb path from errfile. [ticket/10369] Always include errfile and errline in format_errors().
| * | | [ticket/10369] Replace root path with "[ROOT]" as per IRC.Andreas Fischer2011-09-181-1/+1
| | | | | | | | | | | | | | | | PHPBB3-10369
| * | | [ticket/10369] Add warning about paths outside of phpBB root not being filteredAndreas Fischer2011-09-181-0/+2
| | | | | | | | | | | | | | | | PHPBB3-10369
| * | | [ticket/10369] Rename filter_errfile() to filter_root_path().Andreas Fischer2011-09-182-4/+4
| | | | | | | | | | | | | | | | PHPBB3-10369
| * | | [ticket/10369] DRY code to remove phpbb path from errfile.Andreas Fischer2011-09-182-6/+24
| | | | | | | | | | | | | | | | PHPBB3-10369
| * | | [ticket/10369] Always include errfile and errline in format_errors().Andreas Fischer2011-09-181-5/+9
| |/ / | | | | | | | | | | | | | | | | | | We remove the phpBB root path from errfile. This is consistent with how msg_handler handles E_WARNING messages etc. PHPBB3-10369
* | | Merge remote-tracking branch 'github-noxwizard/ticket/10322' into developNils Adermann2011-09-181-16/+54
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | * github-noxwizard/ticket/10322: [ticket/10322] Separate template varref resolution from output generation [ticket/10322] Dynamic template include test [ticket/10322] Fix dynamic template includes
| * | | [ticket/10322] Separate template varref resolution from output generationPatrick Webster2011-09-161-38/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most template variables can now have their PHP variable name resolved instead of only compiling directly. This allows for the use of block vars in INCLUDE statements. This does not work for language variables since they require multiple checks. Added tests for the new types of allowed INCLUDEs. PHPBB3-10322
| * | | [ticket/10322] Fix dynamic template includesPatrick Webster2011-09-081-1/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Dynamic template includes from variables was not implemented in the new templating system. PHPBB3-10322
* | | | Merge branch 'develop-olympus' into developAndreas Fischer2011-09-171-1/+1
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * develop-olympus: [ticket/10324] Fixed XHTML validity error in User Notes Prosilver theme
| * | | [ticket/10324] Fixed XHTML validity error in User Notes Prosilver themegalaxyAbstractor2011-09-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Replaced the deprecated align and width attributes with CSS. PHPBB3-10324
* | | | [ticket/10360] Fix invalid HTML5 markup introduced in PHPBB3-6632Joas Schilling2011-09-114-17/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I removed the fix of the original ticket and rebuild it with its own css class. This also fixes the problem with the screwed up UCP Attachments page. PHPBB3-6632 PHPBB3-10360
* | | | [ticket/10359] Also include utf_tools in style.php because of request class.Andreas Fischer2011-09-081-0/+1
| |/ / |/| | | | | | | | PHPBB3-10359
* | | [ticket/10359] Fix phpbb_request regression in download/file.phpIgor Wiedler2011-09-081-0/+4
| | | | | | | | | | | | | | | | | | The phpbb_request object, utf-8 tools and request_var injection are missing. PHPBB3-10359
* | | Merge branch 'develop-olympus' into developAndreas Fischer2011-09-062-2/+3
|\ \ \ | |/ / | | | | | | | | | | | | | | | * develop-olympus: [ticket/10352] Add missing break for Oracle's sql_table_drop() [ticket/10351] Fix Oracle's sql_column_remove() [ticket/10294] Fix sql_affectedrows() in mssqlnative driver.
| * | Merge remote-tracking branch 'bantu/ticket/10294' into develop-olympusAndreas Fischer2011-09-061-1/+1
| |\ \ | | | | | | | | | | | | | | | | * bantu/ticket/10294: [ticket/10294] Fix sql_affectedrows() in mssqlnative driver.
| | * | [ticket/10294] Fix sql_affectedrows() in mssqlnative driver.Andreas Fischer2011-07-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | sqlsrv_rows_affected() expects a statement resource, not a connection resource. PHPBB3-10294