_coder_review_7x_drupal_clone_warning()sites/all/modules/coder/coder_review/includes/coder_review_7x.inc, line 954
<?php
function _coder_review_7x_drupal_clone_warning() {
return array(
'#warning' => t('!drupal_clone() has been removed and the PHP 5 !clone should be used instead.',
array(
'!drupal_clone' => theme('drupalapi', 'drupal_clone', '6'),
'!clone' => l(t('!clone', array('!clone' => 'clone')), 'http://us.php.net/language.oop5.cloning'),
)
),
'#link' => 'http://drupal.org/node/224333#drupal_clone',
);
}
?>