MightyTechno Little Bug Fixed - Wordpress Plugin
->
Okay, for the past few days I noticed that my posts on the main page were displayed incorrectly, according to MightyAdsense rule.
For example, MightyAdsense is configured to display 3 blocks of ads, but it showed only 1 block. This happened when I used MightyTechno ( Wordpress Technorati friendly plugin ) on this site.
Looking back at the code, I realized the same $current_display variable is being used by both plugins to hold values that supposed to be local to each of them. But it’s not, since plugins are loaded at the same time, $current_display variable is being referred by both plugin and result in value conflict when both plugins are trying to update it. So I guess because MightyTechno is loaded later after MightyAdsense (even though within same session), MightyTechno will reuse $current_display from MightyAdsense - now that should not happen.
It got fixed.
Checkout the latest MightyTechno here.


