Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.9.3, 3.9.4, 3.10.1
Description
$sign = $this->_options['format']{$i};
|
needs to be changed to
$sign = $this->_options['format'][$i];
|
$sign = $this->_options['format']{$i};
|
needs to be changed to
$sign = $this->_options['format'][$i];
|