The solution in my case was this:
- Bad line:
$this->$ExtraTag[] = $fullscript;
- Good line:
$this->{$ExtraTag}[] = $fullscript;
or
$this->ExtraTag[] = $fullscript;
The solution in my case was this:
$this->$ExtraTag[] = $fullscript;
$this->{$ExtraTag}[] = $fullscript;
or
$this->ExtraTag[] = $fullscript;