From 4824901a27fa6f2f3fc14955e3353b8ca58cc781 Mon Sep 17 00:00:00 2001
From: Sergio Cambra <sergio@programatica.es>
Date: Mon, 30 Jun 2014 05:13:24 -0400
Subject: [PATCH] display warning message instead of info

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

diff --git a/interface/web/client/domain_list.php b/interface/web/client/domain_list.php
index bd67c73..85f4a9c 100644
--- a/interface/web/client/domain_list.php
+++ b/interface/web/client/domain_list.php
@@ -46,9 +46,9 @@
 
 $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']);
+if(isset($_SESSION['show_warning_msg'])) {
+	$app->tpl->setloop('warning', array(array('warning_msg' => '<p>'.$_SESSION['show_warning_msg'].'</p>')));
+	unset($_SESSION['show_warning_msg']);
 }
 
 $app->listform_actions->SQLOrderBy = 'ORDER BY domain.domain';

--
Gitblit v1.9.1