mirror of
https://github.com/moodle/moodle.git
synced 2025-04-16 14:02:32 +02:00
MDL-49234 oracle: Remove variables passed by reference error
This commit is contained in:
parent
7357af2b0c
commit
dd379d9af4
@ -978,7 +978,8 @@ class oci_native_moodle_database extends moodle_database {
|
||||
|
||||
default: // Bind as CHAR (applying dirty hack)
|
||||
// TODO: Optimise
|
||||
oci_bind_by_name($stmt, $key, $this->oracle_dirty_hack($tablename, $columnname, $params[$key]));
|
||||
$params[$key] = $this->oracle_dirty_hack($tablename, $columnname, $params[$key]);
|
||||
oci_bind_by_name($stmt, $key, $params[$key]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user