drupal_add_js isn't working - disabling seems the easiest fix
authorColeman Watts <coleman@civicrm.org>
Fri, 8 Mar 2013 03:59:42 +0000 (19:59 -0800)
committerColeman Watts <coleman@civicrm.org>
Fri, 8 Mar 2013 03:59:42 +0000 (19:59 -0800)
CRM/Utils/System/Drupal6.php

index ff46904e547ddc8a5783452c4ba304ca809d233e..bdcd7eca7ad92ba86ce707d417cce879e64382c5 100644 (file)
@@ -327,6 +327,10 @@ SELECT name, mail
    * @access public
    */
   public function addScriptUrl($url, $region) {
+    return FALSE;
+    // The below code does not prevent drupal's and civi's jquery from getting mixed up
+    // Dropping D6 support for drupal_add_js seems reasonable since we no longer officially support D6
+    // But leaving the code in place in case anyone really wants to tackle it.
     switch ($region) {
       case 'html-header':
       case 'page-footer':
@@ -359,6 +363,10 @@ SELECT name, mail
    * @access public
    */
   public function addScript($code, $region) {
+    return FALSE;
+    // The below code does not prevent drupal's and civi's jquery from getting mixed up
+    // Dropping D6 support for drupal_add_js seems reasonable since we no longer officially support D6
+    // But leaving the code in place in case anyone really wants to tackle it.
     switch ($region) {
       case 'html-header':
       case 'page-footer':