Topic: v2.0.1 - fix for social buttons

Hi...

i have made same changes for the social buttons:

1. the facebook like button have an missing style: "button";

core/modules/dashboard.php line 253
original:

'fblike_style' => array('select', 'Layout style|determines the size and amount of social context next to the button', array("standard"=>"standard", "button_count"=>"button_count", "box_count"=>"box_count")),


change:

'fblike_style' => array('select', 'Layout style|determines the size and amount of social context next to the button', array("standard"=>"standard", "button_count"=>"button_count", "box_count"=>"box_count", "button"=>"button")),

2. the twitter count was complety wrong
in line 264

'tw_show_count' => array('Y/N', 'Show count|if yes, count of tweets will be shown near button', array("horisontal"=>"Horisontal", "vertical"=>"Vertical", "none"=>"None")),


to

'tw_show_count' => array('select', 'Show count|determines the count of tweets, will be shown near button', array("horizontal"=>"Horizontal", "vertical"=>"Vertical", "none"=>"None")),


hope it helps anyone :-)