Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - Move the old sqlite extension to PECL | Johannes Schlüter | 2010-11-19 | 1 | -200/+0 |
| | | | | | | # discussed in http://www.mail-archive.com/internals@lists.php.net/msg47463.html | ||||
* | Removed safe_mode | Kalle Sommer Nielsen | 2010-04-26 | 1 | -1/+0 |
| | | | | | | | * Removed ini options, safe_mode* * Removed --enable-safe-mode --with-exec-dir configure options on Unix * Updated extensions, SAPI's and core * php_get_current_user() is now declared in main.c, thrus no need to include safe_mode.h anymore | ||||
* | sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.php | Sebastian Bergmann | 2010-01-03 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 3 of 3. | Sebastian Bergmann | 2008-12-31 | 1 | -1/+1 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 1 | -1/+1 |
| | |||||
* | Fixed bug #41285 (Improved fix for CVE-2007-1887 to work with non-bundled | Ilia Alshanetsky | 2007-05-05 | 1 | -3/+7 |
| | | | | | sqlite2 lib). | ||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 1 | -1/+1 |
| | |||||
* | bump year and license version | foobar | 2006-01-01 | 1 | -3/+3 |
| | |||||
* | - Bumber up year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | - Fixed bug #33185 (--enable-session=shared does not build) | foobar | 2005-05-30 | 1 | -2/+2 |
| | |||||
* | Avoid using floating point arithmetic and rely on safe_emalloc | Sascha Schumann | 2004-03-07 | 1 | -1/+1 |
| | | | | | | | | | | | | | for the multiplication. The actual size requirement is spelled out as: ** The result is written into a preallocated output buffer "out". ** "out" must be able to hold at least 2 +(257*n)/254 bytes. ** In other words, the output will be expanded by as much as 3 ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead. ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.) | ||||
* | Corrected string escape calculation. | Ilia Alshanetsky | 2004-03-07 | 1 | -1/+1 |
| | |||||
* | Fixed possible crash due to an integer overflow. | Ilia Alshanetsky | 2004-03-06 | 1 | -2/+2 |
| | |||||
* | Whoops... Ilia forgot a ')' | John Coggeshall | 2004-01-13 | 1 | -1/+1 |
| | |||||
* | Fixed a bug that would cause the sqlite session database to grow endlessly. | Ilia Alshanetsky | 2004-01-12 | 1 | -1/+9 |
| | |||||
* | - A belated happy holidays and PHP 5 | Andi Gutmans | 2004-01-08 | 1 | -2/+2 |
| | |||||
* | funny fixes | Marcus Boerger | 2003-07-02 | 1 | -3/+3 |
| | |||||
* | further improve the performance and clean up | Sterling Hughes | 2003-07-02 | 1 | -4/+7 |
| | |||||
* | not necessary, already assumed binary safe (it has to be under the current | Sterling Hughes | 2003-07-02 | 1 | -35/+0 |
| | | | | | session architecture), and anything else is fair play | ||||
* | ws fix | Sterling Hughes | 2003-07-02 | 1 | -1/+1 |
| | |||||
* | set synching to off | Sterling Hughes | 2003-07-02 | 1 | -19/+22 |
| | | | | | cleanup some silly code | ||||
* | no c++ style comments | Sterling Hughes | 2003-07-02 | 1 | -1/+0 |
| | |||||
* | make this actually work. | Sterling Hughes | 2003-07-02 | 1 | -6/+9 |
| | |||||
* | Fix warnings and allow builds without ext/session | Marcus Boerger | 2003-07-01 | 1 | -2/+5 |
| | |||||
* | WS | Wez Furlong | 2003-07-01 | 1 | -10/+10 |
| | |||||
* | Add sqlite session handler. | Wez Furlong | 2003-07-01 | 1 | -0/+213 |
Modified (quite a bit!) patch from John Coggeshall. It compiles, but it otherwise untested. session.save_path == path to actual database file for the session. eg: session.save_path=/tmp/mysite-session.db |