I believe the source of the issue is file protected/views/adminAuthor/admin.php, line with: echo 'origin_graph = ' . CJSON::encode($origin_author->getIdenticalAuthors()) . ';';
It looks like expression CJSON::encode($origin_author->getIdenticalAuthors()) is always evaluating to false even though something else would be expected. This looks more like a backend issue
User story
Merge author feature should work as expected
Example:
http://gigadb.gigasciencejournal.com:9170/adminAuthor/update/id/14
Acceptance criteria
Additional Info
I believe the source of the issue is file
protected/views/adminAuthor/admin.php
, line with:echo 'origin_graph = ' . CJSON::encode($origin_author->getIdenticalAuthors()) . ';';
It looks like expression
CJSON::encode($origin_author->getIdenticalAuthors())
is always evaluating tofalse
even though something else would be expected. This looks more like a backend issue