6 lines
129 B
PHP
6 lines
129 B
PHP
|
<?php
|
||
|
// Pages that should not be used as redirect targets
|
||
|
const INVALID_REDIRECT_PAGES = [
|
||
|
'', 'login', 'dashboard', '/'
|
||
|
];
|