Hi Eric,
I seem to have answered my own dumb question, I did the global find and replace, it seemed that there were only 2 files that were involved with this, contents_update_ContentValue1.php
contents_insert_ContentValue1.php
After performing the global find and replace, I uploaded them to my live server and I must say, I was quite surprised to finally view formatted source code.
Thank you
Larry

FCKConfig.FormatSource
FCKConfig.FormatOutput
By default these are set to false, you will need to udpate them to be true to get the source code to be properly formatted.
You will find these settings in several of the files, you can update it with a global find and replace. If you just want to update the formatting of the source code then you only need to update the FormatSource setting, if you would like to update how the output is formatted then you can update the FormatOutput setting.
for FormatSource, do a site wide find and replace with these values:
find:
FCKConfig.FormatSource = false
replace with:
FCKConfig.FormatSource = true
for FormatOutput do the same but look for these values:
find:
FCKConfig.FormatOutput = false
replace with:
FCKConfig.FormatOutput = true
