8
Hmmmm ... ok
I assume you didn't show the rest of the file here only because you didn't change that part.
I found mistakes in the following lines. If you use a ' within a single quoted string, it has to be escaped as \'.
So these two lines:
define('_US_NOPERMISS','Sorry, you dont have f-----g permission to perform this action so [color=ff0000]don't[/color] try it again!');
define('_US_UNEEDAGREE', 'Sorry, you have to agree to our disclaimer to get registered [color=ff0000]Don't[/color] agree then f--k OFF.');
should be:
define('_US_NOPERMISS','Sorry, you dont have f-----g permission to perform this action so [color=ff0000]don't[/color] try it again!');
define('_US_UNEEDAGREE', 'Sorry, you have to agree to our disclaimer to get registered [color=ff0000]Don't[/color] agree then f--k OFF.');