Menu

Output record id

Help
Jian Cai
2015-04-28
2015-04-28
  • Jian Cai

    Jian Cai - 2015-04-28

    This is regarding the Mediawiki extension in r1405

    For unknown reasons the "user_data" table in our database has an empty record, such that the record_id and data_id are no longer identical after that record. We notice that the number in record_id matches that in the "refs" table, while the data_id are consecutive integers for table entries. We then encountered wrong output links unless we change the file

    include/Refbase.Connector.php line 80

    from

    "ON r.serial = u.data_id " .

    to

    "ON r.serial = u.record_id " .

    Please let us know if this change is correct.

     
  • Richard Karnesky

    Yes, that is the right thing to do. Thank you for the patch!

     

Log in to post a comment.