Closed (fixed)
Project:
Drupal For Firebug
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 May 2008 at 23:33 UTC
Updated:
22 May 2008 at 03:11 UTC
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
Comment #1
jeffcd commentedIt 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.
Comment #2
vm commentedI added the closing code tag
Comment #3
populist commentedComment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.