-
Bug
-
Resolution: Deferred
-
Minor
-
None
-
3.7.6, 3.8.3
-
None
-
MOODLE_37_STABLE, MOODLE_38_STABLE
Ao carregar o painel (/my), o bloco da linha do tempo exibe a lista de atividades, mas não consegue tratar atividades que tenham caractere TAB nos nomes das atividades, e um erro de análise ajax JSON será exibido.
When loading the Dashboard (/my), the block_timeline displays the list of activities, but cannot handle activities that have a TAB character in the activity names, and a JSON parsing error will be displayed.
SyntaxError: Unexpected token in JSON at position 31 |
at JSON.parse (<anonymous>)
|
at z.stringHelper (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:74:3408) |
at z.<anonymous> (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:74:4319) |
at n.renderSection (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:5343) |
at n.renderTokens (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:4530) |
at n.renderPartial (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:5678) |
at n.renderTokens (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:4623) |
at n.renderSection (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:5072) |
at n.renderTokens (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:4530) |
at n.renderPartial (http://localhost/moodle/lib/requirejs.php/1589227188/core/first.js:23:5678) |
Eu tentei verificar qual seria esse caractere que aparece na posição 31 em um simulador regex online (https://regexr.com/). Foi identificado como caractere TAB (\t).
I tried to check which character would appear at position 31 and in an online regex simulator (https://regexr.com/). It was identified as a TAB (\t) character.
Depois seguindo a linha de raciocínio do erro reportado em #MDL-65183, o qual reportava erro similar porém com caractere de quebra de linha. Tentei adicionar um \t ao arquivo lib/amd/src/templates.js, algo do tipo:
Then following the train of thought of report #MDL-65183, which reported a similar error but with a newline characteres. I tried to add a \t to the lib/amd/src/templates.js file. Something like that:
.replace(/(\r\n\t|\r|\n|\t)/g, '
'); |
Porém não obtive sucesso. O erro continua aparecendo.
But I was not successful. The error keeps showing up.
Para simular o erro: Use um curso de teste, ative o Acompanhamento de conclusão nas configurações do curso e inscreva seu usuário (de preferência no papel de professor), para que possa criar uma atividade e para que a atividade do curso apareça no painel. Crie a atividade com caractere TAB no nome da atividade. Para isso use um editor de texto externo e a o recurso copiar e colar.
To simulate the error: Use a test course, activate the Completion tracking in the course settings and enroll your user (preferably as a teacher), so that you can create an activity and for the course activity appear on the panel. Create the activity with TAB character in the activity name. To do this, use an external text editor and copy and paste.
- is duplicated by
-
MDL-67640 Course names containing "\" symbol causing JSON error in block_timeline
-
- Closed
-