_coder_review_7x_drupal_add_js_weight_warning

Versions
mediamosa-21
_coder_review_7x_drupal_add_js_weight_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_7x.inc, line 1676

<?php
function _coder_review_7x_drupal_add_js_weight_warning() {
  return array(
    '#warning' => t("Replace 'core', 'module' and 'theme' with 'file' in !drupal_add_js()",
      array(
        '!drupal_add_js()' => theme('drupalapi', 'drupal_add_js()', 7),
      )
    ),
    '#link' => 'http://drupal.org/node/224333#drupal_add_js_weight',
  );
}
?>