Duplicate XF301VB: Bad entry in $simpleMap

jkilbride

Member
The entry for usercp.php in the $simpleMap variable doesn't work. Here's the code from lines 45-47:

PHP:
        'usercp.php' => [
            'whats-new'
        ]

I've fixed it by changing it to:

PHP:
        'usercp.php' => [
            '_' => 'whats-new'
        ]

Thanks!
 
Top Bottom