From f5b0ca26b34388a108f8fe1c77f3ef1c99829bfa Mon Sep 17 00:00:00 2001
From: nveid <nveid@ispconfig3>
Date: Wed, 07 Dec 2011 03:38:52 -0500
Subject: [PATCH] Converted all mysql_ calls to OO based mysqli calls. Also removed the calls to the db closeConn calls in favor of destryong the connections on the class __destruct() 's..

---
 interface/web/sites/database_phpmyadmin.php |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/interface/web/sites/database_phpmyadmin.php b/interface/web/sites/database_phpmyadmin.php
index baf547d..1df863b 100644
--- a/interface/web/sites/database_phpmyadmin.php
+++ b/interface/web/sites/database_phpmyadmin.php
@@ -53,11 +53,18 @@
 $serverData = $app->db->queryOneRecord(
     "SELECT server_name FROM server WHERE server_id = " .
     $serverId);
+	
+$app->uses('getconf');
+$global_config = $app->getconf->get_global_config('sites');
 
 /*
  * We only redirect to the login-form, so there is no need, to check any rights
  */
-isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
-header('location:' . $http . '://' . $serverData['server_name'] . '/phpmyadmin');
+if($global_config['phpmyadmin_url'] != '') {
+	header('Location:'.$global_config['phpmyadmin_url']);
+} else {
+	isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
+	header('location:' . $http . '://' . $serverData['server_name'] . '/phpmyadmin');
+}
 exit;
 ?>
\ No newline at end of file

--
Gitblit v1.9.1