Here is code from biblio_theme_inc that returns the list of characters A,B,C, ...Z
for ($i = 65; $i <= 90; $i++) {
if ($i == ord($current)) {
$output .= '[' . chr($i) . '] ';
}
I change the code for it could return me the list of Cyrillic characters
for ($i = 1040; $i <= 1071; $i++) {
if ($i == ord($current)) {
$output .= '[' . chr($i) . '] ';
}
I get instead of Cyrillic characters
!"#$%&.... ..

What I shoul do?

Comments

supertwain created an issue. See original summary.

supertwain’s picture

Issue summary: View changes
supertwain’s picture

Title: List of cyrillic letters » List of cyrillic characters
liam morland’s picture

Status: Active » Closed (outdated)

Bibliography Module 7.x-2.x is not being developed. If this issue applies to a maintained branch, please re-open and move it to that branch.