Subversion-Projekte lars-tiefland.openvz_admin

Revision

Revision 30 | Revision 44 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 30 Revision 34
Zeile 1... Zeile 1...
1
<?php
1
<?php
2
	// $Id: change.php 30 2007-10-01 17:45:56Z lars $
2
	// $Id: change.php 34 2007-10-01 17:55:00Z lars $
3
	require("include/common.php");
3
	require("include/common.php");
4
	$mode=(isset($_POST["mode"]))?$_POST["mode"]:"";
4
	$mode=(isset($_POST["mode"]))?$_POST["mode"]:"";
5
	$v_id=(isset($_POST["v_id"]))?$_POST["v_id"]:0;
5
	$v_id=(isset($_POST["v_id"]))?$_POST["v_id"]:0;
6
	$hn_id=(isset($_POST["hn_id"]))?$_POST["hn_id"]:1;
6
	$hn_id=(isset($_POST["hn_id"]))?$_POST["hn_id"]:1;
7
	$ips=IP::getIPs();
7
	$ips=IP::getIPs();
Zeile 24... Zeile 24...
24
			break;
24
			break;
25
	}
25
	}
26
	$smarty->assign("title","openVZ Administration");
26
	$smarty->assign("title","openVZ Administration");
27
	$smarty->assign("h1",$title);
27
	$smarty->assign("h1",$title);
28
	$smarty->assign("ips",$ips);
28
	$smarty->assign("ips",$ips);
29
	$smarty->assign("ips",$dists);
29
	$smarty->assign("dists",$dists);
30
	$smarty->assign("hn_id",$hn_id);
30
	$smarty->assign("hn_id",$hn_id);
31
	$smarty->display($tpl_file);
31
	$smarty->display($tpl_file);
32
?>
32
?>