Thanks for the reply. I had a deadline to deal with so I manually renamed the file, then I found the FileDetails snippet.
As for my info:
PHP Version 5.2.14
Server API - CGI
MySQL 5.0.91-community
CENTOS 5.5 x86_64
Apache/2.0.63
MODx Evo 1.03, no core changes, all other snippets work fine.
Plugins: DirectResize and FixAmpersands (code below)
$e = &$modx->event;
$id = $modx->event->params['id'];
if ($e->name == 'OnWebPagePrerender') {
$o = &$modx->documentOutput; // get a reference of the output
// Replace all ^text inside hats^ to <sup> tags, useful for more friendly Wayfinder replacements
$o = preg_replace('%\^([()a-zA-Z0-9 ]*)\^%i', "<sup>$1</sup>",$o);
// Replace orphan & with &
$o = preg_replace('%&(?![a-zA-Z0-9#]{1,6})%i', "&",$o);
// Replace ].]> with ]]>, useful for CDATA tags inside PHx calls: http://modxcms.com/forums/index.php?topic=31435.0
$o = str_replace('/* ].]> */', '/* ]]> */',$o);
}
$e->output($o);
return '';
Problem is not specific to any browser or client OS but I am using win7/Firefox 3.6.10