1
Mods & Plugins (Releases & Support) / Re: [MOD] Media sites v1.11.1 (2010-12-22)
« on: April 20, 2020, 07:21:45 AM »
I know this is a rather old MOD, but believe it or not, it still works on v.1.8 (which works in this PHP7+ world)!
I did notice something though due to a change I made on the general usage of my Gallery - I normally do NOT allow BB code in the comments, so this issue never showed up before. I turned them on and discovered that this code from this MOD was wiping out the text for Description and Comments -
From includes/Functions:
Find:
Insert above:
I did notice something though due to a change I made on the general usage of my Gallery - I normally do NOT allow BB code in the comments, so this issue never showed up before. I turned them on and discovered that this code from this MOD was wiping out the text for Description and Comments -
From includes/Functions:
Find:
Code: [Select]
$text = preg_replace($search_array, $replace_array, $text);
Insert above:
Code: [Select]
/*
MOD MEDIA SITES
BEGIN INSERT
*/
$text = media_sites_bbcode($text);
/*
MOD MEDIA SITES
END INSERT
*/
I removed that code and all the description and comments text came back. It's an optional step in the MOD, so it's not a big deal as far as the MOD goes.