From 1987cb8e71019aeda7bd7947c42a2f64b7dfaad5 Mon Sep 17 00:00:00 2001 From: Christoph Michael Becker Date: Tue, 1 Dec 2020 16:23:33 +0000 Subject: [PATCH] Fix typo git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@351823 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/var/functions/serialize.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/var/functions/serialize.xml b/reference/var/functions/serialize.xml index cd403ddfcc..65bff31eb1 100644 --- a/reference/var/functions/serialize.xml +++ b/reference/var/functions/serialize.xml @@ -95,7 +95,7 @@ $sqldata = array (serialize($session_data), $_SERVER['PHP_AUTH_USER']); if (!odbc_execute($stmt, $sqldata)) { $stmt = odbc_prepare($conn, "INSERT INTO sessions (id, data) VALUES(?, ?)"); - if (!odbc_execute($stmt, array_revers($sqldata))) { + if (!odbc_execute($stmt, array_reverse($sqldata))) { /* Something went wrong.. */ } }