_coder_review_7x_time_limit_warning

Versions
mediamosa-21
_coder_review_7x_time_limit_warning()

Code

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

<?php
function _coder_review_7x_time_limit_warning() {
  return array(
    '#warning' => t('Use !drupal_set_time_limit() instead of !set_time_limit().',
      array(
        '!drupal_set_time_limit()' => theme('drupalapi', 'drupal_set_time_limit()', 7),
        '!set_time_limit()' => theme('phpapi', 'set_time_limit()'),
      )
    ),
    '#link' => 'http://drupal.org/node/224333#time_limit',
  );
}
?>