mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 08:29:10 -05:00
14 lines
253 B
PHP
14 lines
253 B
PHP
<?php
|
|
|
|
require_once('../lib/base.php');
|
|
require( 'template.php' );
|
|
if( !OC_USER::isLoggedIn()){
|
|
header( "Location: ".OC_HELPER::linkTo( "index.php" ));
|
|
exit();
|
|
}
|
|
|
|
|
|
$tmpl = new OC_TEMPLATE( "settings", "index", "admin" );
|
|
$tmpl->printPage();
|
|
|
|
?>
|