Comment 2 for bug 1978300

Revision history for this message
Bruno Malaval (brunomalaval) wrote :

Hi

On my side, I encounter the same problem when I upgrade from 21.10 to the last version of this branch, before upgrade to 22.04

File lib/db/upgrade.php (Latest commit 018c3f1 on 28 Apr)
line 2448 :
execute_sql("UPDATE artefact SET title = ? WHERE id = ?", array($record->email, $record->id));

need to be
execute_sql("UPDATE {artefact} SET title = ? WHERE id = ?", array($record->email, $record->id));

Thanks
Bruno Malaval