From f7ec00b2f8ba3efc5bdeacef9c813f8a826ae3be Mon Sep 17 00:00:00 2001
From: Patrick Anders <p.anders@timmehosting.de>
Date: Wed, 10 Dec 2014 08:44:26 -0500
Subject: [PATCH] add Spdy option - http://en.wikipedia.org/wiki/SPDY
---
interface/web/vm/openvz_template_edit.php | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/interface/web/vm/openvz_template_edit.php b/interface/web/vm/openvz_template_edit.php
index 73d004e..ec520d0 100644
--- a/interface/web/vm/openvz_template_edit.php
+++ b/interface/web/vm/openvz_template_edit.php
@@ -54,8 +54,8 @@
function onAfterInsert() {
global $app, $conf;
- $guar_ram = $this->dataRecord['ram']*256;
- $burst_ram = $this->dataRecord['ram_burst']*256;
+ $guar_ram = $app->functions->intval($this->dataRecord['ram']*256);
+ $burst_ram = $app->functions->intval($this->dataRecord['ram_burst']*256);
$sql = "UPDATE openvz_template SET shmpages = '$guar_ram:$guar_ram',vmguarpages = '$guar_ram:$guar_ram', oomguarpages = '$guar_ram:$guar_ram',privvmpages = '$burst_ram:$burst_ram' WHERE template_id = $this->id";
$app->db->query($sql);
}
@@ -63,8 +63,8 @@
function onAfterUpdate() {
global $app, $conf;
- $guar_ram = $this->dataRecord['ram']*256;
- $burst_ram = $this->dataRecord['ram_burst']*256;
+ $guar_ram = $app->functions->intval($this->dataRecord['ram']*256);
+ $burst_ram = $app->functions->intval($this->dataRecord['ram_burst']*256);
$sql = "UPDATE openvz_template SET shmpages = '$guar_ram:$guar_ram',vmguarpages = '$guar_ram:$guar_ram', oomguarpages = '$guar_ram:$guar_ram',privvmpages = '$burst_ram:$burst_ram' WHERE template_id = $this->id";
$app->db->query($sql);
}
--
Gitblit v1.9.1