projects
/
configmanager.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fb42b29a93b88071c8a43ddba2741b6e89c98205
[configmanager.git]
/
index.php
1
<?php
2
require_once("../lib/lib.php");
3
4
$IS_WEB_REQUEST=true;
5
global $IS_WEB_REQUEST;
6
7
if(isset($_REQUEST["xmlrpc"])) {
8
rpc_handler();
9
return;
10
}
11
www_header();
12
www_pageLayout();
13
www_footer();
14
?>