From 9a5d63807ff17826d30b597b8cced9f21f7a20a4 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Mon, 09 Mar 2009 13:40:51 -0400
Subject: [PATCH] some minor css changes.

---
 interface/lib/classes/tform_actions.inc.php |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/interface/lib/classes/tform_actions.inc.php b/interface/lib/classes/tform_actions.inc.php
index e045fad..4ca70ef 100644
--- a/interface/lib/classes/tform_actions.inc.php
+++ b/interface/lib/classes/tform_actions.inc.php
@@ -80,9 +80,11 @@
 
                 // Calling the action functions
                 if($this->id > 0) {
-                        $this->onUpdate();
+					$app->tform->action == 'EDIT';
+					$this->onUpdate();
                 } else {
-                        $this->onInsert();
+					$app->tform->action == 'NEW';
+					$this->onInsert();
                 }
         }
 
@@ -263,7 +265,7 @@
         function onError() {
                 global $app, $conf;
 
-                $app->tpl->setVar("error","<b>".$app->lng('Error').":</b><br />".$app->tform->errorMessage);
+                $app->tpl->setVar("error","<li>".$app->tform->errorMessage."</li>");
                 $app->tpl->setVar($this->dataRecord);
                 $this->onShow();
         }

--
Gitblit v1.9.1