Nice idea, some sloppy coding though - it kind of ruins the effect.
In both files, where you have to replace a line of code, you have this:
Code:
If ($allforumshack = 0) {
I think you mean:
Code:
if ($allforumshack == 0) {
= is assigning a value to a variable
== means "if it equals"
With a single = every user will get the second template.
I've also edited my code so that the moderation redirects don't apply to mods, super mods or admins.