
level3tjg
-
Posts
6 -
Joined
-
Last visited
Community Answers
-
level3tjg's post in Theos error: Experimental shift on scalar is now forbidden was marked as the answer
Open $THEOS/vendor/logos/bin/lib/Logos/Group.pm with a text editor
Replace
my $functionRetval = shift $args;
my $functionName = shift $args;
With
my $functionRetval = shift @{$args};
my $functionName = shift @{$args};
afaik this is an issue with new versions of perl