_coder_review_6x_url_l_warning

Versions
mediamosa-21
_coder_review_6x_url_l_warning()

Code

sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 647

<?php
function _coder_review_6x_url_l_warning() {
  return array(
    '#warning' => t('!url() and !l() arguments changed, if you have a lot of these use <a href="@script">this conversion script</a>',
      array(
        '!url' => theme('drupalapi', 'url', '6'),
        '!l' => theme('drupalapi', 'l', '6'),
        '@script' => 'http://drupal.org/files/issues/replace.php_.txt',
      )
    ),
    '#link' => 'http://drupal.org/node/114774#url',
  );
}
?>