mawby. I havent had time to even test this change, nor am I sure it will even do what you're after. I just wanted to give it a shot before I head out of town so dont sue me if it doesnt work
In your geek/gal/includes/gal_class_core.php file, change the entire process_text function to this:
PHP Code:
function process_text(&$text)
{
static $find;
static $replace;
static $cached;
static $settings;
if (!$cached)
{
$settings =& $this->settings;
$find =& $settings['data']['text'];
$replace=& $settings['data']['replacement'];
$find[] = "|<!--GAL-->|";
$replace[] = "";
$cached = 1;
}
if ($settings['limit'] < 1)
{
$settings['limit'] = -1;
}
if ($find)
{
$text = preg_replace($find, $replace, " " . $text, $settings['limit']);
}
return $text;
}
Now, I guess youre kind of SOL if you don't know what I mean there - all I can do is apologize in advance
Once again - I havent even tested the above to see if it works let alone fixes your problem.
Hope this helps anyway