aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/questionnaire/questionnaire.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/16287] Use twig syntax and fix coding guidelines issuesMarc Alexander2020-01-021-1/+1
| | | | PHPBB3-16287
* [ticket/16287] After installation an error is given over statistics submissionpaul sohier2020-01-021-2/+2
| | | | | | | | The phpBB.com website required specific fields to be available for the statistics. This change switched over to a new statistics page on www.phpbb.com that uses form fields instead, and that returns JSON as value. PHPBB3-16287
* [ticket/14465] Remove setting for maximum password lengthMarc Alexander2019-10-031-1/+0
| | | | PHPBB3-14465
* [ticket/15738] Remove deprecated variables from questionnaireRubén Calvo2019-05-091-3/+0
| | | | PHPBB3-15738
* Merge pull request #42 from phpbb/ticket/security/227Marc Alexander2018-11-101-1/+0
|\ | | | | | | [ticket/security/227] Replace ImageMagick support with thumbnail event
| * [ticket/security/227] Replace ImageMagick support with thumbnail eventDerky2018-10-231-1/+0
| | | | | | | | SECURITY-227
* | [ticket/15849] Stop using php4 constructorsRuben Calvo2018-10-211-2/+2
|/ | | | PHPBB3-15849
* [ticket/15322] Try to make new email setting more readableMarc Alexander2017-12-131-1/+1
| | | | PHPBB3-15322
* [ticket/15322] Add config setting for -f parameter & remove mail function nameMarc Alexander2017-12-111-1/+1
| | | | | | | The -f parameter can now be added via configuration in the ACP. Addtionally, the config setting for the mail function name has been removed. PHPBB3-15322
* [ticket/14492] Don't explicitly pass data providers by refsMarc Alexander2016-12-031-3/+3
| | | | PHPBB3-14492
* [ticket/14692] Remove duplicate subexpression in questionnaire.phpkilida2016-07-021-1/+0
| | | | | | | Subexpression `($ip_address_ary[0] == '192' && $ip_address_ary[1] == '168')` was repeated. PHPBB3-14692
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | This is part 2 of the pr. PHPBB3-13454
* [ticket/13494] Update calls to `set_config()`Gaëtan Muller2015-02-021-1/+1
| | | | PHPBB3-13494
* [ticket/12775] Remove useless includes of config.phpTristan Darricau2014-07-071-3/+1
| | | | PHPBB3-12775
* [ticket/12775] Move phpbb_convert_30_dbms_to_31 into the config file classTristan Darricau2014-07-071-2/+5
| | | | PHPBB3-12775
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-6/+7
| | | | PHPBB3-12594
* Merge remote-tracking branch 'upstream/develop' into ticket/11015Oleg Pudeyev2012-12-061-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * upstream/develop: (196 commits) [ticket/11219] Coding guidelines and naming consistency changes [ticket/10841] Revert more whitespace changes. [ticket/10841] Revert whitespace changes. [ticket/10841] adding space after if [ticket/10841] removing unnecessary spacing [ticket/10841] changing affectedrows check to COUNT in sql [ticket/10841] Modifying style and language selectors in UCP [ticket/11247] Fix wrong property reference in flock class. [ticket/10602] Avoid a race condition. [ticket/10602] Use last_queue_run for its intended purpose. [ticket/10716] Collect standard error from executed php process. [ticket/10716] Skip test if php is not in PATH. [ticket/10716] Exclude our dependencies from linting. [ticket/10103] New and improved wording. [ticket/10716] Only lint on php 5.3+. [ticket/10103] Assert with messages. [ticket/10103] assertLessThan/assertGreaterThan. [ticket/10103] Inline assignment is bad? [ticket/10103] $rv had too few characters. [ticket/10103] Correct flock class documentation. ... Conflicts: phpBB/includes/functions.php tests/cache/cache_test.php
| * Merge branch 'develop-olympus' into developAndreas Fischer2012-11-291-1/+1
| |\ | | | | | | | | | | | | * develop-olympus: [ticket/11227] @return void -> @return null in develop-olympus.
| | * [ticket/11227] @return void -> @return null in develop-olympus.Oleg Pudeyev2012-11-291-1/+1
| | | | | | | | | | | | PHPBB3-11227
* | | [ticket/11015] Move db driver class name fixing to functionIgor Wiedler2012-11-171-0/+2
|/ / | | | | | | PHPBB3-11015
* | [ticket/11183] Remove $load_extensions and weird dl() callsIgor Wiedler2012-11-101-1/+0
| | | | | | | | PHPBB3-11183
* | [feature/new-tz-handling] Remove appearances of board_dst and user_dstJoas Schilling2012-06-181-1/+0
| | | | | | | | PHPBB3-9558
* | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | PHPBB3-9916
* | [feature/request-class] Adjust code base to do html decoding manuallyIgor Wiedler2011-08-181-2/+2
| | | | | | | | PHPBB3-9716
* | [feature/request-class] Add server(), header() and is_ajax() to requestIgor Wiedler2011-07-151-15/+7
| | | | | | | | | | | | | | | | | | | | | | | | Extend the request class with helpers for reading server vars (server()) and HTTP request headers (header()). Refactor the existing code base to make use of these helpers, make $_SERVER a deactivated super global. Also introduce an is_ajax() method, which checks the X-Requested-With header for the value 'XMLHttpRequest', which is sent by JavaScript libraries, such as jQuery. PHPBB3-9716
* | [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] Ability to use HTTP authentication in ATOM feeds by passing the ↵Andreas Fischer2010-01-191-0/+1
| | | | | | GET parameter auth=http git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10430 89ea8834-ac86-4346-8a33-228a782c2dd0
* Include live data in the statistics #53795Chris Smith2010-01-171-0/+4
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10423 89ea8834-ac86-4346-8a33-228a782c2dd0
* Reflect feed configuration parameter changes in questionnaire.Andreas Fischer2009-12-291-4/+5
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10389 89ea8834-ac86-4346-8a33-228a782c2dd0
* ... wrong file, fixing previous commit r10370Nils Adermann2009-12-231-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10372 89ea8834-ac86-4346-8a33-228a782c2dd0
* Send statistics now check for IPv6 and send private network status as a booleanNils Adermann2009-12-231-10/+44
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10370 89ea8834-ac86-4346-8a33-228a782c2dd0
* add default_lang to statisticsMeik Sievertsen2009-10-201-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10226 89ea8834-ac86-4346-8a33-228a782c2dd0
* also collect admins user agent vendor and version (send_statistics)Meik Sievertsen2009-09-101-2/+18
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10131 89ea8834-ac86-4346-8a33-228a782c2dd0
* - links to send statistics after install and updateNils Adermann2009-08-131-1/+1
| | | | | | | | | - link back to ACP main from send statistics - improved language / better explanation (incl. Bug #48555) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9969 89ea8834-ac86-4346-8a33-228a782c2dd0
* made a mistake when turning stats into a whitelistNils Adermann2009-07-261-3/+4
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9856 89ea8834-ac86-4346-8a33-228a782c2dd0
* removed spacesNils Adermann2009-07-221-8/+8
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9825 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Added install_id to data collectorNils Adermann2009-07-221-49/+211
| | | | | | | | - config variable whitelist, so sensitive MOD info is not transmitted, currently mostly bool/int values - should we reduce the amount of data? git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9818 89ea8834-ac86-4346-8a33-228a782c2dd0
* merged questioinnaire and questionnaire_phpbb and adjusted all files to our ↵Meik Sievertsen2009-07-071-138/+278
| | | | | | | | coding guidelines... if we want to allow dropping in other providers we could add provider files to the questionnaire directory (and grab them), if not it is best to remove the questionnaire directory and put the file under includes/ git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9719 89ea8834-ac86-4346-8a33-228a782c2dd0
* - forgot to remove __construct methods when making this PHP4 compatibleNils Adermann2009-06-271-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9700 89ea8834-ac86-4346-8a33-228a782c2dd0
* acp module for submitting statistical information to phpBBNils Adermann2009-06-271-0/+152
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9698 89ea8834-ac86-4346-8a33-228a782c2dd0