hello @all,
I try to use the Extension:BlogPage with Postgres. This depents on VoteNY extension an there is my problem. All SQL-files I have port to pgsql.
./extensions/VoteNY/VoteClass.php line 182 ff. generate the following query
SELECT vote_value FROM "Vote" WHERE vote_page_id = '0' AND username = 'Admin' LIMIT 1
but it must generate a query like
SELECT vote_value FROM mediawiki.Vote WHERE vote_page_id = '0' AND username = 'Admin' LIMIT 1
The " are too mutch, and the schemata must added.
How can I fix this. Thanks.
Regards, Basti