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.
| Title |
|
||||||
| Status | New | ⇒ | Closed |
| Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2015-04-29 15:09:05 |
| Closed_By | ⇒ | zero-24 | |
| Labels |
Removed:
?
|
||
See PR #6813 please.