Hi all,
I’m assigned a rol layout editor of an article and get the following error is appearing:
Fatal error: Call to a member function getFullName() on null in /home/revista/cache/t_compile/%%B7^B7A^B7A14946%%layout.tpl.php on line 19
Someone has come up with something similar ?. My OJS version is 2.4.7.1
Thank’s,
Andrés,
Hi @aovalle,
That sounds like a data error to me, where a layout editing assignment is given to a non-existent user. Try this MySQL query:
SELECT s.user_id FROM signoffs s LEFT JOIN users u ON u.user_id = s.user_id WHERE s.user_id IS NOT NULL AND u.user_id IS NULL;
This will give you a list of signoffs that are assigned to non-existent users.
Regards,
Alec Smecher
Public Knowledge Project Team