From 06339e0c8ac8fdbbf5d2784df8019704da9bd6eb Mon Sep 17 00:00:00 2001
From: Marius Cramer <m.cramer@pixcept.de>
Date: Tue, 13 Jan 2015 12:28:33 -0500
Subject: [PATCH] - fixed javascript call in json file

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

diff --git a/interface/web/sites/web_sites_stats.php b/interface/web/sites/web_sites_stats.php
index 9bf96cb..4e5535e 100644
--- a/interface/web/sites/web_sites_stats.php
+++ b/interface/web/sites/web_sites_stats.php
@@ -91,7 +91,7 @@
 		$app->tpl->pparse();
 	}
 
-	function getQueryString() {
+	function getQueryString($no_limit = false) {
 		global $app;
 		$sql_where = '';
 
@@ -180,7 +180,7 @@
 }
 
 $list = new list_action;
-$list->SQLExtWhere = "(web_domain.type = 'vhost' or web_domain.type = 'vhostsubdomain')";
+$list->SQLExtWhere = "(web_domain.type = 'vhost' or web_domain.type = 'vhostsubdomain' or web_domain.type = 'vhostalias')";
 $list->SQLOrderBy = 'ORDER BY web_domain.domain';
 $list->onLoad();
 

--
Gitblit v1.9.1