Author: Andreas Möller (localheinz)
Committer: GitHub (web-flow)
Pusher: kamil-tekiela
Date: 2022-06-27T21:06:30+01:00

Commit: 
https://github.com/php/web-php/commit/e5ad28094f7aca291074f49858d8a5b9942251c3
Raw diff: 
https://github.com/php/web-php/commit/e5ad28094f7aca291074f49858d8a5b9942251c3.diff

Fix: Remove duplicate key-value pairs (#565)

Changed paths:
  M  error.php


Diff:

diff --git a/error.php b/error.php
index 46acd721f..68cebbe5c 100644
--- a/error.php
+++ b/error.php
@@ -523,7 +523,6 @@
 // Temporary hack to fix bug #49956 for mysqli -- Please don't hate me for 
this. Data taken from mysqli/summary.xml
 $mysqli_redirects = array(
     "mysqli_affected_rows"  => "mysqli.affected-rows",
-    "mysqli_get_client_info"  => "mysqli.client-info",
     "mysqli_get_client_version"  => "mysqli.client-version",
     "mysqli_connect_errno"  => "mysqli.connect-errno",
     "mysqli_connect_error"  => "mysqli.connect-error",
@@ -532,7 +531,6 @@
     "mysqli_field_count"  => "mysqli.field-count",
     "mysqli_get_host_info"  => "mysqli.host-info",
     "mysqli_get_proto_info"  => "mysqli.protocol-version",
-    "mysqli_get_server_info"  => "mysqli.server-info",
     "mysqli_get_server_version"  => "mysqli.server-version",
     "mysqli_info"  => "mysqli.info",
     "mysqli_insert_id"  => "mysqli.insert-id",
@@ -583,7 +581,6 @@
     "mysqli_stmt_error"  => "mysqli-stmt.error",
     "mysqli_stmt_field_count"  => "mysqli-stmt.field-count",
     "mysqli_stmt_insert_id"  => "mysqli-stmt.insert-id",
-    "mysqli_stmt_num_rows"  => "mysqli-stmt.num-rows",
     "mysqli_stmt_param_count"  => "mysqli-stmt.param-count",
     "mysqli_stmt_sqlstate"  => "mysqli-stmt.sqlstate",
     "mysqli_stmt_attr_get"  => "mysqli-stmt.attr-get",

-- 
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to