1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2'

* PHP-8.2:
  Fix missing link variable in test
This commit is contained in:
Niels Dossche
2023-08-03 21:12:09 +02:00

View File

@@ -77,6 +77,10 @@ print "done!";
--CLEAN--
<?php
require_once 'connect.inc';
if (!$link = my_mysqli_connect($host, $user, $passwd, $db, $port, $socket)) {
printf("[clean] Cannot connect to the server using host=%s, user=%s, passwd=***, dbname=%s, port=%s, socket=%s\n",
$host, $user, $db, $port, $socket);
}
$link->query('DROP USER shatest');
$link->query('DROP USER shatest@localhost');
?>