3

I've seen green, orange, & grey dots, and they don't seem to correspond to variable types… any ideas?

I didn't find any mention of them in the FAQ, etc: http://www.firephp.org/Wiki/Reference/FAQ

the beginning of firephp output with dots shown at left

ptim
  • 14,902
  • 10
  • 83
  • 103
  • 1
    Obviously those dots are the visibility indicators, as stated in the change log. I suggest to check if the visibility (public, private, protected) of your vars is corresponding to the dot colors. – cem Nov 27 '12 at 08:15
  • That makes a lot of sense! got any more info? (I couldn't find this in the changelog).. Post an answer? – ptim Nov 27 '12 at 13:21
  • 1
    I have updated the FAQs: http://www.firephp.org/Wiki/Reference/FAQ – cadorn Nov 28 '12 at 19:39

1 Answers1

0

As replied in the comments: This looks like the visiblity Indicator to me, mentioned in the changelog.

cem
  • 3,311
  • 1
  • 18
  • 23
  • 1
    Ah! tx, missed that.. that led me to the description: _"FirePHP will now log and display non-static private and protected object members. If they are declared static they can be logged with PHP 5.3. The variable viewer will indicate the visibility with a little icon. Red is private, orange is protected and green is public. Grey means undeclared (you have assigned a value but not declared the variable in the class) and the square means it is static."_ http://www.christophdorn.com/Blog/2008/10/22/firephp-02-released/ – ptim Nov 27 '12 at 16:24