document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. buka twitter.php
  2. cari
  3.  
  4. function theme_action_icon($url, $image_url, $text)
  5. ............
  6. ............
  7. ............
  8. .........
  9. }
  10.  
  11.  
  12. ganti menjadi
  13.  
  14. function theme_action_icon($url, $image_url, $text) {
  15. // alt attribute left off to reduce bandwidth by about 720 bytes per page
  16. if (preg_match('/MAP|OT/i', $text))
  17. {
  18. return "<a href='$url' rel='external nofollow noreferrer'>$text</a>";
  19. }
  20. return "<a href='$url'>$text</a>";
  21. }
  22.  
');