YJSGframework / yjsg

YJSG Template Framework Plugin
GNU General Public License v2.0
17 stars 14 forks source link

Print icon missing #35

Closed pionir closed 8 years ago

pionir commented 8 years ago

I was working around with the plugin and I found out that the print icon is missing when bootstrap is off. This is the fix for it.

All instances of this:

if (!$this->print){
    $print_icon = JHtml::_('icon.print_popup', $this->item, $params);
}else{
    $print_icon = JHtml::_('icon.print_screen', $this->item, $params);

}

needs to be changed to this

$print_icon = JHtml::_('icon.print_screen', $this->item, $params);

danyj commented 8 years ago

Submit pull request please and we will look over. Thnx!