1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-07 06:03:25 +02:00

Merge pull request from SimSync/fix_adminperms

added missing constant ADMINPERMS to succeed the getperms check
This commit is contained in:
Nick L 2019-02-06 14:46:29 -06:00 committed by GitHub
commit b31b02e1b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -15,6 +15,8 @@
protected function _before()
{
// fix for getperms("L") check in lancheck.php
define('ADMINPERMS', 'L');
require_once(e_ADMIN."lancheck.php");