slabbi
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Download Monitor] Possible Recaptcha bug?I understand. Thank you for the feedback.
I have quite a few plugins installed on my website, but I haven’t seen this syntax before.
Forum: Plugins
In reply to: [VG WORT METIS] Vulnerability: Missing Authorization to Authenticated…It would definitely be a nice move by VG WORT. While I don’t think many users will actively participate, the proposed approach would be much faster and less stressful for VG WORT when it comes to bug fixes and vulnerabilities, as in this case.
- This reply was modified 9 months, 2 weeks ago by slabbi.
Forum: Plugins
In reply to: [VG WORT METIS] Vulnerability: Missing Authorization to Authenticated…The vulnerability is now two days old, and there’s still no response from VG WORT.
@”VG WORT”: If you can’t – or don’t want to – fix the bug, then put the source code on Github and give interested users access to it for further development.
- This reply was modified 9 months, 2 weeks ago by slabbi.
Forum: Plugins
In reply to: [VG WORT METIS] Vulnerability: Missing Authorization to Authenticated…Yes, sounds reasonable. Thanks for the detailed analysis.
Forum: Plugins
In reply to: [VG WORT METIS] Vulnerability: Missing Authorization to Authenticated…$post_id = (int) $_POST['post_id'];the value is always cast to an integer. When the value of post_id cannot be converted to an integer it is “0”, so I doubt that this is a problem here. Same for the second value. The only unchecked values are the identification IDs.
Forum: Plugins
In reply to: [Simple Download Monitor] 3.9.20 crashes siteMy pleasure 😉
Forum: Plugins
In reply to: [Simple Download Monitor] 3.9.20 crashes siteFix:
Replace:
add_filter(‘the_title’, ‘filter_sdm_post_type_title’, 10, 2);
function filter_sdm_post_type_title($title, $id) {with
add_filter(‘the_title’, ‘filter_sdm_post_type_title’, 10, 2);
function filter_sdm_post_type_title($title, $id = null) {See the notes here:
Forum: Plugins
In reply to: [Simple Download Monitor] 3.9.20 crashes siteUpdate:
I have to remove the add_filter(‘the_title’, ‘filter_sdm_post_type_title’, 10, 2); to fix the problem. When I remove only $title = apply_filters(‘sdm_post_type_title_single_post’, $title, $id); the main page crashes but some sub-pages still work.
Forum: Plugins
In reply to: [Link Library] Duplicate, flattened categories using link-library-catsHierarchical categories broke in 7.3.16. In 7.3.15 hierarchical categories works fine.
Replacing the file render-link-library-cats-sc.php with the file from 7.3.15 fixes the problem.
Forum: Plugins
In reply to: [Link Library] HTML is not working anymoreIn 7.4.6 the escaping does not longer break incomplete tags.
Thanks a lot.
Forum: Plugins
In reply to: [Link Library] HTML is not working anymorewp_kses() uses wp_kses_normalize_entities(), does this escape all html tags?
- This reply was modified 3 years, 4 months ago by slabbi.
Forum: Plugins
In reply to: [Link Library] HTML is not working anymoreNo, sorry. The Link Library now escapes the tags.
I will send you some pics.Forum: Plugins
In reply to: [Link Library] Duplicate, flattened categories using link-library-catsYou should have received the complete configuration from my site now. HTH
Forum: Plugins
In reply to: [Link Library] Duplicate, flattened categories using link-library-catsHi Yannick,
you can check the links here:
https://8bit-museum.de/sonstiges/links/
The first links are sub categories.It worked for a very long time so there was definitely a change. Is it safe to downgrade, so no config is overwritten? If so I can go back until I find a version that works, so we see when the functionality broke.
Forum: Plugins
In reply to: [Link Library] HTML is not working anymoreMaybe you should not filter tags at all but filter some maybe critical tags instead, e.g. script?