diff --git a/xCAT-UI/ui.old/log.php b/xCAT-UI/ui.old/log.php index 10d74fb07..34daff862 100644 --- a/xCAT-UI/ui.old/log.php +++ b/xCAT-UI/ui.old/log.php @@ -4,9 +4,9 @@ header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); -require_once "../lib/functions.php"; -require_once "../lib/security.php"; -require_once "jsonwrapper.php"; +require_once "lib/functions.php"; +require_once "lib/security.php"; +require_once "security/jsonwrapper.php"; if(isset($_GET["logout"]) or isset($_POST["logout"])){ logout(); diff --git a/xCAT-UI/ui.old/update.php b/xCAT-UI/ui.old/update.php index aeee5a7bd..7a70f5e86 100644 --- a/xCAT-UI/ui.old/update.php +++ b/xCAT-UI/ui.old/update.php @@ -25,9 +25,20 @@ $StableRepository = "http://xcat.sourceforge.net/yum/xcat-core/"; } - echo "" . $DevelRepository . "(Devel)
"; - echo "" . $StableRepository . "(Stable)
"; - if(isset($_COOKIE["xcatrepository"])) + echo "" . $DevelRepository . "(Devel)
"; + echo "" . $StableRepository . "(Stable)
"; + + if((1 != $_COOKIE["xcatrepository"]) && (2 != $_COOKIE["xcatrepository"])) { echo "Other:"; echo ""; diff --git a/xCAT-UI/ui.old/updateprocess.php b/xCAT-UI/ui.old/updateprocess.php index 40ec988cd..92dda5d4c 100644 --- a/xCAT-UI/ui.old/updateprocess.php +++ b/xCAT-UI/ui.old/updateprocess.php @@ -57,13 +57,17 @@ if (!checkRpmPath($sRpmPath)) } //set cookie must in front of any output -if (isset($_REQUEST["remember"])) +if (1 == $_REQUEST["remember"]) { - setcookie("xcatrepository", $sRpmPath, time() + 864000, "/"); + setcookie("xcatrepository", "1", time() + 864000, "/"); +} +elseif(2 == $_REQUEST["remember"]) +{ + setcookie("xcatrepository", "2", time() + 864000, "/"); } else { - setcookie("xcatrepository", "", time() - 172800, "/"); + setcookie("xcatrepository", $sRpmPath, time() + 864000, "/"); } echo "
It will update " . $sRpmNames ." from " . $sRpmPath . ".