Wiki

Clone wiki

BibSonomy / documentation / releases / 2014 / 2.0.43

2.0.43 (jil)

Date: 2014/03/26

released

external

api export für bibtex and endnote meta-data (date and change date) are displayed on the bibtex-details page

internal

internal rest-client cleanup removed supertag subtag relation queries from rest api was ist mit den Konzepten passiert? restructured authenticationhandlers Tag-Recommendations are now sent as json

Necessary Changes

properties

Database

fix role deleted (#1741)

UPDATE user SET role = 3 where user_password = 'inactive';

fix openid connections for unknown users (#1742)

CREATE TEMPORARY TABLE unknown_openid_users SELECT user_name FROM `openIDUser` LEFT JOIN user USING(user_name) WHERE id IS NULL;
DELETE FROM openIDUser WHERE user_name IN (SELECT user_name FROM unknown_openid_users);
DROP TABLE unknown_openid_users;

Updated