MyBB Community Forums

Full Version: Security Issue importing theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I get the following issue when importing the attached theme.

http://gyazo.com/36f3b1b93649936f81f218b1647aa94b.png

Theme link: http://mods.mybb.com/view/mynecraft-envira-design

Attached XML as well.

What can I do to resolve this issue?

Thanks!
Image is dead.
Try opening the .xml file with any text editor and changing:
{$monthnames[$prev_month['month']]}
to
{$prev_month['month']}
And:
{$monthnames[$next_month['month']]}
to:
{$next_month['month']}

If doesn't work see this thread http://community.mybb.com/thread-139498.html
Apologies labrocca, I added the link only this time. Gyazo keeps having issues lately. And I will try those things out, Destroy666. Thank you!
Try also changing:
{$monthnames[$week_from[1]]}
To:
{$monthnames[$week_from_one]}

And:
{$type_checked[$type['tid']]}
To:
{$checked}

If still nothing, read the topic I posted, you'll need to get through the whole theme looking for disallowed variables.
It worked this time! Thanks so much sir!