_coder_review_6x_db_num_rows_warning()sites/all/modules/coder/coder_review/includes/coder_review_6x.inc, line 865
<?php
function _coder_review_6x_db_num_rows_warning() {
return array(
'#warning' => t('!db_num_rows() has been deprecated',
array(
'!db_num_rows' => theme('drupalapi', 'db_num_rows', '5'),
)
),
'#link' => 'http://drupal.org/node/114774#db-num-rows',
'#description' => t('The db_num_rows() method was removed from the database abstraction layer in 6.x core, as it was a database dependent method. Use SELECT COUNT(*) or some other appropriate solutions'),
);
}
?>