Skip to content

Commit

Permalink
Add a missing space in Standard.php before btn-success (joomla#16738)
Browse files Browse the repository at this point in the history
There is a space missing before btn-success
  • Loading branch information
yvesh authored and zero-24 committed Jun 17, 2017
1 parent a9c7f43 commit bdef149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/cms/toolbar/button/standard.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function fetchButton($type = 'Standard', $name = '', $text = '', $task =

if ($name === 'apply' || $name === 'new')
{
$options['btnClass'] .= 'btn-success';
$options['btnClass'] .= ' btn-success';
$options['class'] .= ' icon-white';
}

Expand Down

0 comments on commit bdef149

Please sign in to comment.