Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
Merge pull request #39 from zero-24/fix_font
Browse files Browse the repository at this point in the history
fixes #38 Fix the font issue
  • Loading branch information
brianteeman authored Jun 3, 2017
2 parents 46194ee + 020b420 commit 54729c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion haraka.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ private function displayHaraka()
$caption = $this->params->get('caption', '');
$countdown = $this->params->get('countdown', 1);
$countdown_date = $this->params->get('countdown_date', '');
$font = explode('|', $this->params->get('fonts', 'Roboto+Slab|Roboto'));
$fonts = $this->params->get('fonts', 'Roboto+Slab|Roboto');
$font = explode('|', $fonts);
$fontcss = str_replace('+',' ', $font);
$text = $this->params->get('text', '<p>' . JText::_('PLG_SYSTEM_HARAKA_COMING_SOON') . '</p>');
$theme = $this->params->get('theme', 'light');
Expand Down

0 comments on commit 54729c9

Please sign in to comment.