From 2cb1563f63386b35a69e460051aa9b4a2851d104 Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Wed, 30 May 2012 07:30:44 -0400
Subject: [PATCH] - Added (clickable) placeholders to client messaging function. - Added check so that the client password isn't inserted into the message (for security reasons).

---
 interface/web/sites/web_sites_stats.php |   10 ++++++----
 1 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/interface/web/sites/web_sites_stats.php b/interface/web/sites/web_sites_stats.php
index ee8fd58..076858b 100644
--- a/interface/web/sites/web_sites_stats.php
+++ b/interface/web/sites/web_sites_stats.php
@@ -34,22 +34,22 @@
 		$tmp_year = date('Y');
         $tmp_month = date('m');
 		$tmp_rec = $app->db->queryOneRecord("SELECT SUM(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year' AND MONTH(traffic_date) = '$tmp_month'");
-		$rec['this_month'] = number_format(intval($tmp_rec['t'])/1024, 0, '.', ' ');
+		$rec['this_month'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
 		
 		//** Traffic of the current year
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year'");
-		$rec['this_year'] = number_format(intval($tmp_rec['t'])/1024, 0, '.', ' ');
+		$rec['this_year'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
 		
 		//** Traffic of the last month
         $tmp_year = date('Y',mktime(0, 0, 0, date("m")-1, date("d"), date("Y")));
         $tmp_month = date('m',mktime(0, 0, 0, date("m")-1, date("d"), date("Y")));
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year' AND MONTH(traffic_date) = '$tmp_month'");
-		$rec['last_month'] = number_format(intval($tmp_rec['t'])/1024, 0, '.', ' ');
+		$rec['last_month'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
 		
 		//** Traffic of the last year
 		$tmp_year = date('Y',mktime(0, 0, 0, date("m"), date("d"), date("Y")-1));
 		$tmp_rec = $app->db->queryOneRecord("SELECT sum(traffic_bytes) as t FROM web_traffic WHERE hostname = '".$rec['domain']."' AND YEAR(traffic_date) = '$tmp_year'");
-		$rec['last_year'] = number_format(intval($tmp_rec['t'])/1024, 0, '.', ' ');
+		$rec['last_year'] = number_format($tmp_rec['t']/1024/1024, 0, '.', ' ');
 		
 		//* The variable "id" contains always the index variable
 		$rec['id'] = $rec[$this->idx_key];
@@ -58,6 +58,8 @@
 }
 
 $list = new list_action;
+$list->SQLExtWhere = "type = 'vhost'";
+
 $list->onLoad();
 
 

--
Gitblit v1.9.1