| Age | Commit message (Collapse) | Author | Files | Lines |
|
The original regex was causing sub-query with ORDER BY and LIMIT
clauses to be stripped out, resulting in multiple rows being returned
and causing a SQL error.
Example queries that were failing:
* SELECT name, ( SELECT id FROM tmp_table LIMIT 1 ) FROM table;
* SELECT id FROM ( SELECT id FROM tmp_table LIMIT 1 ) AS table;
Signed-off-by: Damien Regad <dregad@mantisbt.org>
|
|
Fixes #32
|
|
|
|
|
|
http://php.net/manual/en/language.basic-syntax.phptags.php
|
|
|
|
See https://sourceforge.net/p/adodb/bugs/127/
|
|
Implementing the patch submitted by Mike in
http://phplens.com/lens/lensforum/msgs.php?id=17813
|
|
Bumped 'dev' version allows users who rely on source code downloaded
from the git repository rather than an official release tarball to
reliably determine that they are running a development version of the
library.
|
|
- Move all files in adodb5/ to root
- Remove adodb-for-php4/ directory
|