I ran coder.module — and am just learning that module — and got the following output. I have no patch at this point, but I figured it would be worth a start for someone.

sites/all/modules/inline/inline.module
inline.module
Line 8: New syntax for .info files files requires core=6.x
Line 240: new hook_theme() function is required to register theme_ functions (Drupal Docs)
function theme_inline_as_link($file) {
Line 11: The menu system has been completely over-hauled in 6.x. (Drupal Docs)
if ($may_cache) {
Line 12: The menu system has been completely over-hauled in 6.x. (Drupal Docs)
$items[] = array(
Line 28: The arguments to hook_help() have changed (Drupal Docs)
function inline_help($section = 'admin/help#inline') {
Line 35: url() and l() arguments changed, if you have a lot of these use this conversion script (Drupal Docs)
return t('You may add links to files uploaded with this node using special tags', array('!explanation-url' => url('filter/tips', NULL, 'image')));
Line 120: hook_form_alter() parameters have changed (Drupal Docs)
function inline_form_alter($form_id, &$form) {
Line 173: url() and l() arguments changed, if you have a lot of these use this conversion script (Drupal Docs)
return t('You may use [inline:xx] tags to display uploaded files or images inline.', array("!inline_help" => url("filter/tips/$format", NULL, 'filter-inline')));
Line 198: hook_nodeapi('submit') has been replaced by op='presave' (Drupal Docs)
case 'submit':

Comments

sun’s picture

Status: Active » Closed (duplicate)

Marking as duplicate of http://drupal.org/node/193676

jaharmi’s picture

Ah, sorry, I didn't see that when I was looking around, and was trying to contribute something useful. I've been checking out a few of my critical modules for Drupal 6.x compatibility, so I may have just missed it in my eagerness to upgrade and haste.