// D6 seems not to be able to handle external scripts
// assume one if path starts with http:
// assume alias if path starts with /
- if (preg_match('/^http:/') || preg_match('/^\//')) {
- drupal_add_js(variable_get('pz2_js_path', 'pazpar2/js')
- . '/pz2.js', 'module', 'footer', TRUE, TRUE, FALSE);
+ $pz2_js_path = variable_get('pz2_js_path', 'pazpar2/js');
+ if (preg_match('/^http:/', $pz2_js_path)
+ || preg_match('/^\//', $pz2_js_path)) {
+ drupal_add_js($pz2_js_path.'/pz2.js', 'module', 'footer',
+ TRUE, TRUE, FALSE);
} else {
- drupal_add_js($path.'/'.variable_get('pz2_js_path', 'pazpar2/js')
- . '/pz2.js', 'module', 'footer');
+ drupal_add_js($path.'/'.$pz2_js_path.'/pz2.js', 'module', 'footer');
}
drupal_add_js($path . '/jquery.ba-bbq.js', 'module', 'footer');
drupal_add_js($path . '/recipe.js', 'module', 'footer');