| 11f03531 | 29-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
removed another occurance of the obsolete config option |
| d0f8d50b | 29-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
simplified %GROUP% wildcard support |
| f0859d4b | 29-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
Input wrapper for html forms |
| 8108113c | 29-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
Input validation for media manager |
| 5d0aaf95 | 28-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
treat empty string inputs as unset for int and bool |
| a6ba0720 | 27-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
Avoid timeout when content-length is 0 |
| 8243e610 | 27-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
Limit size of reads when max_bodysize is set or content-length is present |
| 7d01a0ea | 27-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
more INPUT wrapper uses: cache purge, sectok, getID |
| 90f1b7bd | 27-Jun-2012 |
Tom N Harris <tnharris@whoopdedo.org> |
Input wrapper for action.php |
| 3272d797 | 25-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
some code cleanup and php docs |
| 591acd87 | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
some Input class fixes and unit tests |
| bcc94b2c | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
Input wrapper for auth.php |
| d720a82c | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
remove() implemented for Input class |
| a12aaeb7 | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
allow setting values via input class |
| ab5d26da | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
code cleanup |
| ff1769de | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
another input wrapper fix |
| c4e18ef9 | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
added 3rd parameter to Input methods
This allows to treat empty parameters as default |
| fd50d5c7 | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
added has() method to input class |
| 89177306 | 24-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
Introducing a $_REQUEST/POST/GET wrapper
This new wrapper ensures types are correct and accessed parameters are actually set (with custom default fallbacks).
The wrapper is available in the global
Introducing a $_REQUEST/POST/GET wrapper
This new wrapper ensures types are correct and accessed parameters are actually set (with custom default fallbacks).
The wrapper is available in the global $INPUT variable. It accesses $_REQUEST by default. If POST or GET is required, the post and get members can be used:
$INPUT->int('foo',false); // access $_REQUEST['foo'], default false $INPUT->post->int('foo'); // access $_POST['foo'], default 0 $INPUT->get->int('foo'); // access $_GET['foo'], default 0
The codebase still needs to be updated to make use of this.
show more ...
|
| 29fbab8d | 23-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
code cleanup |
| e3736c26 | 23-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
some phpdoc updates |
| a89c75af | 23-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
some code beautification |
| 4c89a7f6 | 23-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
another bad comparison fixed |
| 4d18e936 | 23-Jun-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed wrong comparison in Mailer::dump() |
| 87ada0b8 | 22-Jun-2012 |
Dion Nicolaas <dion@nicolaas.net> |
Dutch language update |