summaryrefslogtreecommitdiffstats
path: root/settings/index.php
blob: 31db326f6bc7cabfca607dbb7d1b0d9cc2bf429d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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();

?>