(solved) tables.yml missing single quotes

For documentation of changes to the PGSocial Network extension
Post Reply
User avatar
Mandi
Site Admin
Site Admin
Posts: 47
Joined: July 31st, 2023, 8:37 pm
Location: Somewhere, Canada
Contact:

(solved) tables.yml missing single quotes

Post by Mandi »

Single quotes are missing in the tables.yml file. To make is compatibble with current symphony and phpBB, go to ext/pgreca/pgsocial/config and open the tables.yml file.

Easy change, replace all contents of that file with this:

Code: Select all

parameters:
    pgreca.pgsocial.table.social.wallpost: '%core.table_prefix%pg_social_wall_post'
    pgreca.pgsocial.table.social.wallpostlike: '%core.table_prefix%pg_social_wall_like'
    pgreca.pgsocial.table.social.wallpostcomment: '%core.table_prefix%pg_social_wall_comment'
    pgreca.pgsocial.table.social.gallery: '%core.table_prefix%pg_social_gallery'
    pgreca.pgsocial.table.social.photos: '%core.table_prefix%pg_social_photos'
    pgreca.pgsocial.table.social.pages: '%core.table_prefix%pg_social_pages'
    pgreca.pgsocial.table.social.pages_like: '%core.table_prefix%pg_social_pages_like'
    pgreca.pgsocial.table.social.chat: '%core.table_prefix%pg_social_chat'
Post Reply