I read an Article on DI about Adsense Revenue sharing
http://www.labnol.org/internet/blogging/adsense-revenue-sharing-multiple-author-blog/4814/
I implemented the same for two authors( A and B) in my site. The ads are showing up and everything is working as it should. But there is just a small problem.
The adsense code generated is of the type
google_ad_client = "pub-XXX";
/* Name of the Adsense Unit */
google_ad_slot = "123";
google_ad_width = 336;
google_ad_height = 280;
But after implementing revenue sharing the code becomes
google_ad_client = "pub-XXX";
google_ad_slot = "123";
google_ad_width = 336;
google_ad_height = 280;
Notice that the name of the adsense unit is not shown after implementing the modified code with PHP on Wordpress. Will it violate Adsense TOS ? I know that the name of the ad unit is enclosed within comments but just in case the modified code doesnt match with the original code string by string is a concern.
Please Suggest