likely I'm getting wrong, but please check these improvements (some extra ' " '):
1. in components\com_phocagallery\views\category\view.html.php
LINE 1943:
from
Code: Select all
$s .= ' width: '.$this->tmpl['boxsize']['width'].'px;"'."\n";Code: Select all
$s .= ' width: '.$this->tmpl['boxsize']['width'].'px;'."\n";from
Code: Select all
$s .= ' width: '.$this->tmpl['boxsizestat']['width'].'px;"'."\n";Code: Select all
$s .= ' width: '.$this->tmpl['boxsizestat']['width'].'px;'."\n";from
Code: Select all
$s .= ' width: '.$this->tmpl['imagewidth'].'px;"'."\n";Code: Select all
$s .= ' width: '.$this->tmpl['imagewidth'].'px;'."\n";in components\com_phocagallery\views\categories\view.html.php
LINE 144:
from
Code: Select all
$s .= ' width: '.$this->tmpl['boxsize']['width'].'px;"'."\n";Code: Select all
$s .= ' width: '.$this->tmpl['boxsize']['width'].'px;'."\n";from
Code: Select all
$s .= ' width: '.$this->tmpl['imagewidth'].'px;"'."\n";Code: Select all
$s .= ' width: '.$this->tmpl['imagewidth'].'px;'."\n";
