Hello,
the script was modified in 2 points.
First point the script load JS:
// **********************************************
// Clean for godaddy free hosting
$st_data = file_get_contents( $src );
$st_data = substr( $st_data, 0, strrpos( $st_data, '</iframe>' ) );
echo "<script type='text/javascript'>\n";
echo $st_data;
echo "</script>\n";
// **********************************************
// echo "<script type='text/javascript' src='" . esc_attr($src) . "'></script>\n";
Second point the script load stylesheet:
// **********************************************
// Clean for godaddy free hosting
$st_data = file_get_contents( $href );
$st_data = substr( $st_data, 0, strrpos( $st_data, '</iframe>' ) );
echo "<style type='text/css' media='all'>\n";
echo $st_data;
echo "</style>\n";
// **********************************************
//echo "<link rel='stylesheet' href='" . esc_attr($href) . "' type='text/css' media='all' />\n";
In all 2 points, the line commented was originally in the source of wordpress 2.8.4.
I had commented that and i had added the code over that.
The JS or stylesheet was loaded into $st_data var ($st_data = file_get_contents( $href );), then cleaned for the tag added by godaddy ($st_data = substr( $st_data, 0, strrpos( $st_data, '</iframe>' ) );) and finally included in the output page (echo $st_data;) with the apposite start and end section tag.
This code work fine for me.
I hope that work fine for all.