Fix include modulo Utenti
This commit is contained in:
parent
bac4ef6262
commit
db36d14295
|
@ -1,14 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$skip_permissions = true;
|
$skip_permissions = true;
|
||||||
include __DIR__.'/../../core.php';
|
include_once __DIR__.'/../../core.php';
|
||||||
|
|
||||||
$pageTitle = tr('Utente');
|
$pageTitle = tr('Utente');
|
||||||
|
|
||||||
include_once App::filepath('include|custom|', 'top.php');
|
include_once App::filepath('include|custom|', 'top.php');
|
||||||
|
|
||||||
if (post('op') == 'change_pwd') {
|
if (post('op') == 'change_pwd') {
|
||||||
include __DIR__.'/actions.php';
|
include_once __DIR__.'/actions.php';
|
||||||
}
|
}
|
||||||
|
|
||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
|
|
Loading…
Reference in New Issue