From b91328b225502a9fd9d871bae4529b6ea04b9b67 Mon Sep 17 00:00:00 2001
From: Sergio Cambra <sergio@programatica.es>
Date: Mon, 30 Jun 2014 05:09:21 -0400
Subject: [PATCH] display info message after domain owner change

---
 interface/web/client/domain_list.php |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/interface/web/client/domain_list.php b/interface/web/client/domain_list.php
index 622e52a..bd67c73 100644
--- a/interface/web/client/domain_list.php
+++ b/interface/web/client/domain_list.php
@@ -46,6 +46,11 @@
 
 $app->uses('listform_actions');
 
+if(isset($_SESSION['show_info_msg'])) {
+	$app->tpl->setloop('info', array(array('info_msg' => '<p>'.$_SESSION['show_info_msg'].'</p>')));
+	unset($_SESSION['show_info_msg']);
+}
+
 $app->listform_actions->SQLOrderBy = 'ORDER BY domain.domain';
 $app->listform_actions->onLoad();
 

--
Gitblit v1.9.1