mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
fixed fatal dml conversion regression
This commit is contained in:
parent
90b2d8f012
commit
230405214f
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user