]> granicus.if.org Git - php/commitdiff
Merge branch 'PHP-7.3' into PHP-7.4
authorChristoph M. Becker <cmbecker69@gmx.de>
Mon, 9 Mar 2020 21:51:11 +0000 (22:51 +0100)
committerChristoph M. Becker <cmbecker69@gmx.de>
Mon, 9 Mar 2020 21:51:11 +0000 (22:51 +0100)
* PHP-7.3:
  Enclose INI values containing {TMP} in quotes

1  2 
ext/sqlite3/tests/sqlite3_33_load_extension_param.phpt

index 27ad4fa4eca21e0abc442d31b4808573d322e3c1,feebc0d7243a33ca1071f1554bb6387ce27285e8..ab5d3fc99a8de1440950a70d5311e028c116f20c
@@@ -4,15 -4,9 +4,15 @@@ SQLite3::loadExtension with empty exten
  Jelle Lampaert
  #Belgian Testfest 2009
  --INI--
- sqlite3.extension_dir={TMP}
+ sqlite3.extension_dir="{TMP}"
  --SKIPIF--
 -<?php require_once(__DIR__ . '/skipif.inc'); ?>
 +<?php
 +require_once(__DIR__ . '/skipif.inc');
 +
 +if (!method_exists('SQLite3', 'loadExtension')) {
 +      die("skip if SQLITE_OMIT_LOAD_EXTENSION defined");
 +}
 +?>
  --FILE--
  <?php