aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/captcha/plugins/phpbb_captcha_gd_plugin.php
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/11854] Move captcha stuff to phpbb/ and use DI for pluginsTristan Darricau2014-08-111-158/+0
| | | | PHPBB3-11854
* [ticket/12594] Remove @package tags and update file headersYuriy Rusko2014-05-271-6/+7
| | | | PHPBB3-12594
* [ticket/11700] Move all recent code to namespacesNils Adermann2013-09-161-1/+1
| | | | PHPBB3-11700
* [ticket/11183] Remove $load_extensions and weird dl() callsIgor Wiedler2012-11-101-13/+1
| | | | PHPBB3-11183
* Merge remote-tracking branch 'p/ticket/11157' into developAndreas Fischer2012-10-301-2/+2
|\ | | | | | | | | | | | | * p/ticket/11157: [ticket/11157] static public is the currently approved order. [ticket/11157] Fix remaining captcha spam. [ticket/11157] get_captcha_types is an instance method.
| * [ticket/11157] static public is the currently approved order.Oleg Pudeyev2012-10-291-2/+2
| | | | | | | | PHPBB3-11157
| * [ticket/11157] Fix remaining captcha spam.Oleg Pudeyev2012-10-291-2/+2
| | | | | | | | PHPBB3-11157
* | [ticket/11159] static public is the currently approved order.Oleg Pudeyev2012-10-291-1/+1
|/ | | | PHPBB3-11159
* [ticket/10575] Adding public visibility to the methods.Bruno Ais2012-04-051-1/+1
| | | | | | Added public visibility to the methods PHPBB3-10575
* [ticket/10575] Fixing non-static access to static functions get_instanceBruno Ais2012-04-051-1/+1
| | | | | | | | These changes should solve the strict standards error about accessing the non-static get_instance() in a non-static way. For that, I changed the get_instance methods to static methods. PHPBB3-10575
* [ticket/9916] Updating header license and removing Version $Id$Unknown2011-12-311-2/+1
| | | | PHPBB3-9916
* [ticket/9608] Remove use of references in captcha and other placesIgor Wiedler2011-07-131-2/+2
| | | | | | | | | 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
* [task/config-class] Always specify the config table to use.Nils Adermann2011-01-121-1/+1
| | | | PHPBB3-9988
* [task/config-class] Implemented a config class to replace the global array.Nils Adermann2011-01-101-1/+8
| | | | | | | | | | | | | | | There is a phpbb_config class which simply holds an array and does not persist any data. It implements ArrayAccess, Countable and IteratorAggregate to allow regular use of configuration as if it was still an array. The phpbb_config_db class depends on an instance of the dbal and a cache driver. It obtains the configuration data from cache and database as necessary and persists data to the database. The functions set_config and set_config_count remain for backward compatability but they only call methods on the new config class now instead of directly manipulating the database and cache. PHPBB3-9988
* [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/auto-loading] Added autoloader to common and ensured compatabilityNils Adermann2010-07-051-1/+1
| | | | | | | | | | | | | | | The autoloader is registered in install without caching, since caching is set up during installation. This provides the same functionality, performance is not a concern during installation anyway. In common.php the autoloader is instantiated after the cache is initialised and is started with the standard cache backend used for other cached values. A few places in the code using class_exists had to be updated to explicitly avoid autoloading, since they are used to check whether a file needs to be included which does not (yet) follow the naming scheme the autoloader follows. PHPBB3-9682
* Copy 3.0.x branch to trunkMeik Sievertsen2009-10-041-0/+165
| | | | git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
* Move trunk/phpBB to old_trunk/phpBB Meik Sievertsen2009-10-041-101/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@10210 89ea8834-ac86-4346-8a33-228a782c2dd0
* $template to phpbb::$templateMeik Sievertsen2009-02-221-2/+3
| | | | git-svn-id: file:///svn/phpbb/trunk@9337 89ea8834-ac86-4346-8a33-228a782c2dd0
* remove global and change $user-> to phpbb::$user->Meik Sievertsen2009-02-221-4/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@9334 89ea8834-ac86-4346-8a33-228a782c2dd0
* $config to phpbb::$configMeik Sievertsen2008-12-281-2/+2
| | | | git-svn-id: file:///svn/phpbb/trunk@9242 89ea8834-ac86-4346-8a33-228a782c2dd0
* - updated all code to use the request class instead of any direct access toNils Adermann2008-11-241-1/+1
| | | | | | | | | super globals - disabled super globals in common.php. See commit r9101 for more information - cleaned up/simplified a few lines along the way. git-svn-id: file:///svn/phpbb/trunk@9102 89ea8834-ac86-4346-8a33-228a782c2dd0
* short php open tags should not be used. :) A lot of users (including myself) ↵Meik Sievertsen2008-09-221-10/+11
| | | | | | do not allow them. git-svn-id: file:///svn/phpbb/trunk@8907 89ea8834-ac86-4346-8a33-228a782c2dd0
* mehHenry Sudhof2008-09-191-0/+0
| | | | git-svn-id: file:///svn/phpbb/trunk@8892 89ea8834-ac86-4346-8a33-228a782c2dd0
* Okay, that is pretty raw, but better to have it in place than trying to play ↵Henry Sudhof2008-09-191-0/+101
catch-up. Introducing an early stage of CAPTCHA modules. git-svn-id: file:///svn/phpbb/trunk@8889 89ea8834-ac86-4346-8a33-228a782c2dd0