installed on fresh drupal 6 and got:

notice: Undefined index: delete protection in /home/mysite/public_html/sites/all/modules/wikitools/wikitools.module on line 273.

Comments

Ryan Palmer’s picture

I'm getting this as well. I just installed it, and there it is. The suspect code is:

/**
 * Is delete protection activated?
 */
function wikitools_delete_protection() {
  $options = wikitools_options();
  return $options['delete protection']; // Line 273
}

add1sun’s picture

Status: Active » Closed (duplicate)

Looks lie someone removed the option for the list but not all the code that went with it. Delete protection needs to be removed from the module anyway though, pursuant to #263475: Remove delete protection option so I'll mark this one as a dupe since this error will be fixed when that issue gets taken care of.