From 230405214fbee5720391a9b370774f3975bdac65 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sat, 18 Sep 2010 11:20:21 +0000 Subject: [PATCH] fixed fatal dml conversion regression --- lib/tablelib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tablelib.php b/lib/tablelib.php index b86a70b9535..c87cc1b1189 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -1333,7 +1333,7 @@ class table_sql extends flexible_table{ list($wsql, $wparams) = $this->get_sql_where(); if ($wsql) { $this->countsql .= ' AND '.$wsql; - $this->countparams = arry_merge($this->countparams, $wparams); + $this->countparams = array_merge($this->countparams, $wparams); $this->sql->where .= ' AND '.$wsql; $this->sql->params = array_merge($this->sql->params, $wparams); -- 2.43.0