mirror of
https://github.com/moodle/moodle.git
synced 2025-08-04 08:26:37 +02:00
MDL-24869 fixed incorrect string location
This commit is contained in:
parent
d0e538ba1c
commit
568d0b6de0
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@
|
||||||
}
|
}
|
||||||
if ($hook == 'SPECIAL') {
|
if ($hook == 'SPECIAL') {
|
||||||
//Create appropiate IN contents
|
//Create appropiate IN contents
|
||||||
$alphabet = explode(",", get_string("alphabet"));
|
$alphabet = explode(",", get_string('alphabet', 'langconfig'));
|
||||||
list($nia, $aparams) = $DB->get_in_or_equal($alphabet, SQL_PARAMS_NAMED, $start='a0', false);
|
list($nia, $aparams) = $DB->get_in_or_equal($alphabet, SQL_PARAMS_NAMED, $start='a0', false);
|
||||||
$params = array_merge($params, $aparams);
|
$params = array_merge($params, $aparams);
|
||||||
$where = "AND " . $DB->sql_substr("upper(concept)", 1, 1) . " $nia";
|
$where = "AND " . $DB->sql_substr("upper(concept)", 1, 1) . " $nia";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue