?
avatar grapeguy
grapeguy
21 Apr 2015

In libraries/fof/form/field/tag.php on line 244 there is a '.' missing on the return line.

Currently reads as:
return '<span class="' $this->id . ' ' . $class . '">' .
$html .
'</span>';

Should read as:

return '<span class="' . $this->id . ' ' . $class . '">' .
$html .
'</span>';

This was noticed when I loaded Joomal3.4.1 into Eclipse.

avatar grapeguy grapeguy - open - 21 Apr 2015
avatar grapeguy grapeguy - change - 21 Apr 2015
Title
syntax error int tags.php FOFFormFieldTag->getRepeatable line 244
syntax error in tags.php FOFFormFieldTag->getRepeatable line 244
avatar bertmert
bertmert - comment - 21 Apr 2015

See PR #6813 please.

avatar zero-24
zero-24 - comment - 29 Apr 2015

Closing as this will be fixed by the next upstream update of fof :+1: (see: #6813)

avatar zero-24 zero-24 - change - 29 Apr 2015
Status New Closed
Closed_Date 0000-00-00 00:00:00 2015-04-29 15:09:05
Closed_By zero-24
Labels Removed: ?
avatar zero-24 zero-24 - close - 29 Apr 2015

Add a Comment

Login with GitHub to post a comment