aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acp/acp_captcha.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-1/+1
| | | | | | This is part 2 of the pr. PHPBB3-13454
* [ticket/13454] Remove unused variablesMarc Alexander2016-01-061-2/+2
| | | | | | This is the first part of the changes. More to come. PHPBB3-13454
* Merge branch '3.1.x'Oliver Schramm2015-11-061-12/+53
|\ | | | | | | | | Conflicts: phpBB/includes/acp/acp_captcha.php
| * [ticket/11971] Validate "Spambot countermeasures" settings before saving.Cesar G2015-10-141-12/+53
| | | | | | | | PHPBB3-11971
* | [ticket/13455] Update calls to `request_var()`Gaëtan Muller2015-02-031-6/+6
| | | | | | | | PHPBB3-13455
* | [ticket/13494] Update calls to `set_config()`Gaëtan Muller2015-02-021-2/+2
| | | | | | | | PHPBB3-13494
* | [ticket/13468] Update calls to `add_log()`Gaëtan Muller2015-01-271-2/+2
| | | | | | | | PHPBB3-13468
* | [ticket/13450] Type-hint return value of $phpbb_container->get()Gaëtan Muller2015-01-121-0/+1
|/ | | | PHPBB3-13450
* [ticket/11854] Rename captchas.factory service to captcha.factoryTristan Darricau2014-08-111-2/+2
| | | | PHPBB3-11854
* [ticket/11854] Move captcha stuff to phpbb/ and use DI for pluginsTristan Darricau2014-08-111-9/+8
| | | | PHPBB3-11854
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-6/+8
| | | | PHPBB3-12594
* [ticket/12458] Apply Squiz.WhiteSpace.SuperfluousWhitespace.* to legacy code.Andreas Fischer2014-04-291-1/+0
| | | | | | | | | * There MUST NOT be trailing whitespace at the end of lines. * There MUST NOT be whitespace before the first content of a file. * There MUST NOT be whitespace after the last content of a file. * Functions MUST NOT contain multiple empty lines in a row. PHPBB3-12458
* Merge branch 'develop-olympus' into developAndreas Fischer2013-07-031-0/+2
|\ | | | | | | | | | | * develop-olympus: [ticket/11617] Remove spaces and tabs from empty lines [ticket/11617] Missing U_ACTION in acp_captcha.php
| * [ticket/11617] Remove spaces and tabs from empty linesMatt Friedman2013-07-021-1/+1
| | | | | | | | PHPBB3-11617
| * [ticket/11617] Missing U_ACTION in acp_captcha.phpMatt Friedman2013-07-021-0/+2
| | | | | | | | | | | | http://tracker.phpbb.com/browse/PHPBB3-11617 PHPBB3-11617
* | [ticket/11157] get_captcha_types is an instance method.Oleg Pudeyev2012-10-291-1/+2
| | | | | | | | | | | | | | It is specific to a particular captcha factory implementation, instantiate a captcha factory to invoke it. PHPBB3-11157
* | Merge remote-tracking branch 'unknownbliss/ticket/9916' into developAndreas Fischer2012-01-021-2/+1
|\ \ | | | | | | | | | | | | * unknownbliss/ticket/9916: [ticket/9916] Updating header license and removing Version $Id$
| * | [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | | | | | | | | | PHPBB3-9916
* | | Merge branch 'develop-olympus' into developAndreas Fischer2011-12-231-1/+1
|\ \ \ | |/ / |/| / | |/ | | * develop-olympus: [ticket/10546] Add missing argument to adm_back_link in acp_captcha.
| * [ticket/10546] Add missing argument to adm_back_link in acp_captcha.Oleg Pudeyev2011-12-231-1/+1
| | | | | | | | PHPBB3-10546
* | [feature/extension-manager] Allow extensions to define captcha plugins.Nils Adermann2011-09-291-2/+2
| | | | | | | | | | | | | | The base class for captcha plugins has been renamed, but the old name continues to exist as an empty subclass of it for backwards compatability. PHPBB3-10323
* | [ticket/9608] Remove use of references in captcha and other placesIgor Wiedler2011-07-131-5/+5
| | | | | | | | | | | | | | | | | | References are not really needed in PHP due to copy-on-write. Since PHP5, objects are always passed around as identifiers, which means they are mutable. So it is no longer required to pass these by reference either. PHPBB3-9608
* | [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
* [ticket/9655] Pass E_USER_WARNING, so it doesn't look like a successful action.Andreas Fischer2010-06-141-2/+2
| | | | PHPBB3-9655
* spacesHenry Sudhof2010-01-171-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10413 89ea8834-ac86-4346-8a33-228a782c2dd0
* Mirror login captcha option on captcha settingsHenry Sudhof2010-01-171-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10410 89ea8834-ac86-4346-8a33-228a782c2dd0
* Move add_log() call for captcha "configure" page to the captcha plugin, ↵Meik Sievertsen2009-09-221-2/+1
| | | | | | | | | because only the plugin is able to know if the config got updated or not. Note to captcha MOD authors: please check if you have a function acp_page() and if an add_log() call is required for your plugin. Bug #51695 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10177 89ea8834-ac86-4346-8a33-228a782c2dd0
* sanity check - avoid ugly error messagesHenry Sudhof2009-09-151-3/+4
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10144 89ea8834-ac86-4346-8a33-228a782c2dd0
* #49675 #49655 - ATTENTION: small captcha API changeHenry Sudhof2009-08-141-1/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9975 89ea8834-ac86-4346-8a33-228a782c2dd0
* copy regiustration attempt setting to acp_captcha - although the setting is ↵Henry Sudhof2009-07-211-8/+8
| | | | | | pointless git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9809 89ea8834-ac86-4346-8a33-228a782c2dd0
* mehHenry Sudhof2009-06-231-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9660 89ea8834-ac86-4346-8a33-228a782c2dd0
* Oh right. PHP4Henry Sudhof2009-06-131-5/+5
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9581 89ea8834-ac86-4346-8a33-228a782c2dd0
* some corrections, only very minor things.Meik Sievertsen2009-06-071-15/+14
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9554 89ea8834-ac86-4346-8a33-228a782c2dd0
* Okay, a first ci of the new captcha plugins. We'll add dynamic template ↵Henry Sudhof2009-06-021-82/+95
| | | | | | includes later, as well as documentation on how to use this. I'm prepared to get yelled at for bugs (oh, I know that there are plenty); but please blame spammers for broken styles and MODs. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9524 89ea8834-ac86-4346-8a33-228a782c2dd0
* #43345 - log changes to visual confirmationMeik Sievertsen2009-04-181-0/+1
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9475 89ea8834-ac86-4346-8a33-228a782c2dd0
* a language alteration for captchas. Meik Sievertsen2009-04-111-4/+13
| | | | | | Added min/max captcha chars constants and changed the length from 5-8 to 4-7 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9437 89ea8834-ac86-4346-8a33-228a782c2dd0
* captcha changesHenry Sudhof2009-03-171-0/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9390 89ea8834-ac86-4346-8a33-228a782c2dd0
* and another CAPTCHA setting - add new noise shapes to the noise array for ↵Henry Sudhof2009-02-081-1/+2
| | | | | | more variations. git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9320 89ea8834-ac86-4346-8a33-228a782c2dd0
* New option for the GD VC. Parameters need some more tweakingHenry Sudhof2009-01-211-2/+2
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9283 89ea8834-ac86-4346-8a33-228a782c2dd0
* No negative values (#30335)Henry Sudhof2008-07-291-1/+5
| | | | git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8722 89ea8834-ac86-4346-8a33-228a782c2dd0
* Fix some instances where we left db connections open (registration -> ↵Meik Sievertsen2008-06-131-4/+4
| | | | | | captcha for example) git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8655 89ea8834-ac86-4346-8a33-228a782c2dd0
* dumdidum... sorry. ;)Meik Sievertsen2007-10-051-3/+11
| | | | git-svn-id: file:///svn/phpbb/trunk@8147 89ea8834-ac86-4346-8a33-228a782c2dd0
* Ok, here comes a big one. Poor updater. Also requires testing.Henry Sudhof2007-10-031-2/+9
| | | | | | | | | | | | #i91 #i92 #i93 #i94 #i95 #i96 git-svn-id: file:///svn/phpbb/trunk@8120 89ea8834-ac86-4346-8a33-228a782c2dd0
* necessary changes...Meik Sievertsen2007-08-301-1/+1
| | | | git-svn-id: file:///svn/phpbb/trunk@8072 89ea8834-ac86-4346-8a33-228a782c2dd0
* Introducing a new CAPTCHA. Thanks to Robert "Xore" Hetzler for idea & code ↵Henry Sudhof2007-05-051-5/+49
| | | | | | | | | and Ashley "Neothermic" Pinner for her expertise and contributions to said code. This introduces new language variables, so take note translators :). git-svn-id: file:///svn/phpbb/trunk@7478 89ea8834-ac86-4346-8a33-228a782c2dd0
* - compress is nicer (fixed a bug :P)David M2006-11-031-84/+30
| | | | | | | | - UTF-8 code is nicer (fixed a bug :P) - new CAPTCHA. Replaced the old one for size and usability issues. The old CAPTCHA will most likely be released as a separate package git-svn-id: file:///svn/phpbb/trunk@6549 89ea8834-ac86-4346-8a33-228a782c2dd0
* consistent acp layout regarding backlinks and messages.Meik Sievertsen2006-10-021-3/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@6428 89ea8834-ac86-4346-8a33-228a782c2dd0
* - fixed some bugsMeik Sievertsen2006-09-131-1/+1
| | | | | | | | | | | - changed attachment handling a bit - tried to remove target tags out of the code - do not add session ids to urls for bots as well as not creating a new session on each page view for them I bet i introduced some bugs too. ;) git-svn-id: file:///svn/phpbb/trunk@6364 89ea8834-ac86-4346-8a33-228a782c2dd0
* - some bugfixesMeik Sievertsen2006-08-281-3/+3
| | | | | | | - using E_USER_WARNING if an error occurred within the ACP (sadly not able to use it as a default for trigger_error - it seems to be hardcoded in PHP) git-svn-id: file:///svn/phpbb/trunk@6320 89ea8834-ac86-4346-8a33-228a782c2dd0
* - Captcha ACPDavid M2006-08-011-1/+1
| | | | | | | - BBCode stuff git-svn-id: file:///svn/phpbb/trunk@6222 89ea8834-ac86-4346-8a33-228a782c2dd0