From d8b8b07743627b8280d722c32215852204317401 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Mon, 15 Dec 2008 07:08:56 -0500
Subject: [PATCH] Made links to phpmyadmin and webmail in the database and mailbox lists configurable.

---
 interface/web/sites/web_domain_list.php |   12 ++++++++----
 1 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/interface/web/sites/web_domain_list.php b/interface/web/sites/web_domain_list.php
index 3520c28..da46e76 100644
--- a/interface/web/sites/web_domain_list.php
+++ b/interface/web/sites/web_domain_list.php
@@ -44,12 +44,16 @@
 //* Check permissions for module
 $app->auth->check_module_permissions('sites');
 
-$app->uses('listform_actions');
+$app->load('listform_actions');
 
-// Limit the results to alias domains
-$app->listform_actions->SQLExtWhere = "type = 'vhost'";
 
-$app->listform_actions->onLoad();
+class list_action extends listform_actions {
+	
+}
+
+$list = new list_action;
+$list->SQLExtWhere = "type = 'vhost'";
+$list->onLoad();
 
 
 ?>
\ No newline at end of file

--
Gitblit v1.9.1