summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | Related bug #63588 fix length computation + optimize for speedRemi Collet2012-11-261-17/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following comment from Yoram "The patch looks fine, except of testing for true value of utf16 in each iteration." Also fix the length computation during check phase.
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2012-11-255-67/+31
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed bug #63588 Duplicate implementation of php_next_utf8_char
| * | | | Fixed bug #63588 Duplicate implementation of php_next_utf8_charRemi Collet2012-11-255-67/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Json use an utf8 parser from a third party library, switch to our implementation of php_next_utf8_char. This also helps on solving #63520. All the unit tests succeed. Our implementation also seems a little faster. json.dsp need to be regenerated.
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2012-11-251-0/+3
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed Bug #63361 Header not installed
| * | | | Fixed Bug #63361 Header not installedRemi Collet2012-11-251-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ext/mysqli/php_mysqli_structs.h is installed and includes mysqli_mysqlnd.h or mysqli_libmysql.h. So this header must also be installed.
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2012-11-241-0/+3
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed Bug #63149 Feature missing with system SQLite
| * | | | Fixed Bug #63149 Feature missing with system SQLiteRemi Collet2012-11-241-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In pdo_sqlite, getColumnMeta should return the table name. With bundled SQLite library, -DSQLITE_ENABLE_COLUMN_METADATA=1 (other_flags) enable the feature in SQLite (function sqlite3_column_table_name). With system SQLite library, this fix detects if sqlite3_column_table_name is available and add SQLITE_ENABLE_COLUMN_METADATA macro to get the same behavior. Test already exists: ext/pdo_sqlite/tests/bug_42589.phpt
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2012-11-241-0/+52
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | * PHP-5.4: add unit test for bug 63126 NEWS
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Remi Collet2012-11-241-0/+52
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | * PHP-5.3: add unit test for bug 63126 NEWS
| | * | | add unit test for bug 63126Remi Collet2012-11-241-0/+52
| | | | |
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2012-11-241-1/+1
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores array
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Remi Collet2012-11-241-1/+1
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * PHP-5.3: Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores array
| | * | | Fixed Bug #63126 DISABLE_AUTHENTICATOR ignores arrayRemi Collet2012-11-241-1/+1
| | | | |
| | * | | Backported the fix for bug #63248 from 5.4+Anatoliy Belsky2012-11-233-114/+141
| | | | |
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Anatoliy Belsky2012-11-221-0/+3
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed test for bug #63297
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Anatoliy Belsky2012-11-221-0/+3
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * PHP-5.3: Fixed test for bug #63297
| | * | | Fixed test for bug #63297Anatoliy Belsky2012-11-221-0/+3
| | | | |
* | | | | Add myself to QADavid Soria Parra2012-11-211-1/+1
| | | | |
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2012-11-211-4/+0
|\ \ \ \ \ | |/ / / /
| * | | | Unused variable copystrXinchen Hui2012-11-211-4/+0
| | | | | | | | | | | | | | | | | | | | copystr is declared again blow
* | | | | Update credits for 5.5Xinchen Hui2012-11-212-5/+5
| | | | |
* | | | | Merge branch 'PHP-5.4' into PHP-5.5Pierrick Charron2012-11-162-1/+34
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * PHP-5.4: Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from value
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Pierrick Charron2012-11-162-1/+34
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * PHP-5.3: Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from value
| | * | | Fixed bug #63512 parse_ini_file() with INI_SCANNER_RAW removes quotes from valuePierrick Charron2012-11-162-1/+34
| | | | | | | | | | | | | | | | | | | | Restore the old behavior but keep bug 51094 fixed
* | | | | Fixed ext/intl/tests/timezone_createDefault_basic.phptAnatoliy Belsky2012-11-151-5/+5
| | | | | | | | | | | | | | | | | | | | Timezone offsets can be negative
* | | | | Fixed ext/pdo_mysql/tests/pdo_mysql_class_constants.phptAnatoliy Belsky2012-11-141-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There is a constant now which only is there when mysqli with mysqlnd and pdo_mysql was compiled at the same time, or when libmysql version > 50605. So checking for that dynamically, will fail only if there is no mysqli and no connection.
* | | | | Fixed sockets ext build on winAnatoliy Belsky2012-11-132-0/+4
| | | | |
* | | | | Merge branch 'PHP-5.4'Derick Rethans2012-11-131-540/+572
|\ \ \ \ \ | |/ / / /
| * | | | Merge branch 'PHP-5.3' into PHP-5.4Derick Rethans2012-11-131-540/+572
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | Conflicts: NEWS
| | * | | - Updated to version 2012.10 (2012j)Derick Rethans2012-11-131-540/+572
| | | | |
| | * | | Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3Derick Rethans2012-11-1312-18/+177
| | |\ \ \
| | | * | | fix invalid read when trimming empty stringAntony Dovgal2012-11-111-2/+4
| | | | | |
| * | | | | Merge branch 'PHP-5.4' of git.php.net:/php-src into PHP-5.4Derick Rethans2012-11-1316-23/+231
| |\ \ \ \ \
* | \ \ \ \ \ Merge branch 'master' of git.php.net:/php-srcDerick Rethans2012-11-137-5/+87
|\ \ \ \ \ \ \
| * \ \ \ \ \ \ Merge branch 'PHP-5.4'Adam Harvey2012-11-121-1/+1
| |\ \ \ \ \ \ \ | | | |/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.4: Update arginfo for preg_match_all() to reflect reality. fix invalid read when trimming empty string
| | * | | | | | Update arginfo for preg_match_all() to reflect reality.Adam Harvey2012-11-121-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Back when I implemented FR #53238 during the 5.4 development phase to make the $matches parameter optional in preg_match_all(), it turns out I forgot to update the arginfo to note that only 2 parameters are now required by preg_match_all(). The function itself works fine, but reflection was reporting the wrong number of required parameters.
| | * | | | | | fix invalid read when trimming empty stringAntony Dovgal2012-11-111-2/+4
| | | | | | | |
| * | | | | | | fix invalid read when trimming empty stringAntony Dovgal2012-11-111-2/+4
| | | | | | | |
| * | | | | | | Merge branch 'PHP-5.4'Xinchen Hui2012-11-074-0/+80
| |\ \ \ \ \ \ \ | | |/ / / / / /
| | * | | | | | Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2012-11-074-0/+80
| | |\ \ \ \ \ \ | | | | |_|/ / / | | | |/| | | |
| | | * | | | | Fixed bug #63447 (max_input_vars doesn't filter variables when ↵Xinchen Hui2012-11-074-0/+80
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mbstring.encoding_translation = On)
| | | * | | | | Merge branch 'PHP-5.3' of git.php.net:php-src into PHP-5.3Rasmus Lerdorf2012-11-0573-29001/+40327
| | | |\ \ \ \ \
| | | * | | | | | These need to be volatile in order to prevent leaking after theRasmus Lerdorf2012-11-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longjmp in the error handler
| | * | | | | | | These need to be volatile in order to prevent leaking after theRasmus Lerdorf2012-11-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longjmp in the error handler
| * | | | | | | | These need to be volatile in order to prevent leaking after theRasmus Lerdorf2012-11-051-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longjmp in the error handler
* | | | | | | | | Merge branch 'PHP-5.4'Derick Rethans2012-11-041-29/+29
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | / / / / | | |_|_|/ / / / | |/| | | | | |
| * | | | | | | Merge branch 'PHP-5.3' into PHP-5.4Derick Rethans2012-11-041-29/+29
| |\ \ \ \ \ \ \ | | | |_|_|/ / / | | |/| | | | |
| | * | | | | | - Updated to version 2012.9 (2012i)Derick Rethans2012-11-041-29/+29
| | | | | | | |
* | | | | | | | Merge branch 'PHP-5.4'Andrey Hristov2012-10-311-1/+1
|\ \ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | |
| * | | | | | | Merge branch 'PHP-5.3' into PHP-5.4Andrey Hristov2012-10-311-1/+1
| |\ \ \ \ \ \ \ | | | |_|_|/ / / | | |/| | | | |