Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredharbour committed Oct 8, 2012
1 parent e1f8f7a commit 7955209
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hopper/themekit/class-themekitforwp-cssengine.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,11 @@ private function style_switch($v, $saved){
}
break;
case 'font':
$inherit = $v[ "id" ]['face'] == 'Use Theme Font' ? true: false;
//print_r($v);
$inherit = false;
if( is_array($v[ "id" ]) ){
$inherit = $v[ "id" ]['face'] == 'Use Theme Font' ? true: false;
}
$font_list = $this->_tk->get_fonts($inherit);


Expand Down

0 comments on commit 7955209

Please sign in to comment.