Multiple extensions don't work

I’m trying to get both JS Gantt and the Calendar extension running at the
same time.

I can add the appropriate Set(@Plugins,“foo”); into the RT_SiteConfig.pm
file, and each one works separately just fine.

However, if I try to include both in the RT_SiteConfig.pm file, only the
last one will work.

I’m a complete moron when it comes to perl, so I have no idea if there’s
an add(@Plugins,“foo”); that I should be using, or what.

Is it possible to run both JS Gantt and RTx::Calendar, and if so, how?

Thanks!

If you have eight hours to chop down a tree
spend six sharpening your axe.
–Abraham Lincoln

I can add the appropriate Set(@Plugins,“foo”); into the RT_SiteConfig.pm
file, and each one works separately just fine.

However, if I try to include both in the RT_SiteConfig.pm file, only the
last one will work.

They all need to be included in the same line.
Set(@Plugins, qw(foo bar fleem));