In drupalforfirebug.module:

function drupalforfirebug_get_php_exec_area() {
  global $base_url;
  $output .= '<iframe width=95% frameborder=0 height=300px src="' . $base_url . '/admin/firebug/exec' . '">';
  return $output;
}

Should be:

function drupalforfirebug_get_php_exec_area() {
  global $base_url;
  $output .= '<iframe width=95% frameborder=0 height=300px src="' . $base_url . '/admin/firebug/exec' . '"></iframe>';
  return $output;
}

Comments

jeffcd’s picture

It didn't post my code right in the initial report. Anyway, I think it's pretty self-explanatory. The iframe tag needs to be closed properly otherwise it messed up the rest of the page.

vm’s picture

I added the closing code tag

populist’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.