From df8a460cfd4a21e35441bd1e0c4cefe6739463ea Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Fri, 26 Feb 2010 07:09:42 -0500
Subject: [PATCH] Impoved the software update function to enable the installation of apps like phpmyadmin into the apps vhost.

---
 server/plugins-available/apps_vhost_plugin.inc.php |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/server/plugins-available/apps_vhost_plugin.inc.php b/server/plugins-available/apps_vhost_plugin.inc.php
index a87ef5e..47107b0 100644
--- a/server/plugins-available/apps_vhost_plugin.inc.php
+++ b/server/plugins-available/apps_vhost_plugin.inc.php
@@ -82,6 +82,9 @@
         $vhost_conf_enabled_dir = $web_config['vhost_conf_enabled_dir'];
 		$apps_vhost_servername = ($web_config['apps_vhost_servername'] == '')?'':'ServerName '.$web_config['apps_vhost_servername'];
 		
+		$web_config['apps_vhost_port'] = (empty($web_config['apps_vhost_port']))?8081:$web_config['apps_vhost_port'];
+		$web_config['apps_vhost_ip'] = (empty($web_config['apps_vhost_ip']))?'_default_':$web_config['apps_vhost_ip'];
+		
 		$content = str_replace('{apps_vhost_ip}', $web_config['apps_vhost_ip'], $content);
 		$content = str_replace('{apps_vhost_port}', $web_config['apps_vhost_port'], $content);
 		$content = str_replace('{apps_vhost_dir}', $web_config['website_basedir'].'/apps', $content);

--
Gitblit v1.9.1