Advertisement
Guest User

Untitled

a guest
Aug 15th, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  * Disable LabJS on certain pages
  5.  */
  6. function labjs_disabler_hook_init() {    
  7.   if (current_path() == "/private/members/search") {
  8.     define('LABJS_DISABLE', TRUE);
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement