xcat-core/xCAT-UI/update.php
xq2005 1232566040 add by xu qing
for moving the update function to new web gui

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@6800 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
2010-07-20 05:28:07 +00:00

21 lines
234 B
PHP

<?php
/*
* update.php
*
*/
require_once "lib/functions.php";
require_once "lib/ui.php";
/* Load page */
loadPage();
/* Login user */
if (!isAuthenticated()) {
login();
} else {
loadContent();
}
?>