https://www.icyphoenix.com/viewtopic.php?f=40&t=9615&p=60652#p60652
-----------------------------------
Informpro
Tue 09 Aug, 2016 20:52

Re: Plugins Errors I Found
-----------------------------------
Okay, I've had some time to investigate (I used a hotspot to download IP and the plugins).

So, one by one:

- the feedback plugin bug is caused because... The feedback plugin believes it's the album plugin. In the feedback plugin init code (plugins/feedback/common.php), this line is the issue:
[code]$plugin_name = empty($plugin_name) ? 'feedback' : $plugin_name;[/code]
The issue is that the album was already loaded, so plugin_name is equal to "album".

@MG this seems like a serious issue. We should probably remove this conditional, and force the plugin name anyway.


-----------

For the activity mod -- I think this one is a bit counterintuitive...
I havn't seen the extra sql file instruction, but anyway, we should remove this "install / uninstall" page from the ACP, and integrate the SQL queries into the plugin itself.

What I've done and works:
- install the plugin in the ACP
- ACP > Activity/Games > Install/Uninstall
- click "Install activity mod plus"
- visit activity.php



------


For the links plugins... Uhm, that one's a blunder... The field name for the site URL is site_url, but it's not present in the links config table, so it's discarded...


