Hi there,
I was checking out a certain page with Firebug and noticed that certain lines started with "$spacing" and appeared not correctly indented.
I checked the code and found that drupalforfirebug.module line 347 reads:
$output .= '<div>$spacing <span style="color: grey;"> [' . $key .'] => stdClass (' . $colorend .'</div>';
which obviously prevents $spacing to be replaced with its content.
I think the correct line should be:
$output .= '<div>'. $spacing .'<span style="color: grey;"> [' . $key .'] => stdClass (' . $colorend .'</div>';
Nothing major but...
I wanted to learn how to submit patches, but I am still working on learning how to... sorry.
Thanks
Dario
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | spacingappearsinoutput-1905878-1.patch | 739 bytes | savedario |
Comments
Comment #1
frobI see, good catch.
If you can please work of off the 7.x branch and then back port your patch to 6.x. If you click on the version control tab in the project window then it has instructions on how to submit a patch.
I will probably update the dev branchs sometime tonight
Comment #2
savedario commentedHi there,
Thanks for hint on creating patches.
Here's the one I came up with.
Comment #3
frobThank you very much for the patch.