From d65eaaf5960c525976ddcb8af32e3aa347f1a5b0 Mon Sep 17 00:00:00 2001
From: mcramer <m.cramer@pixcept.de>
Date: Sat, 16 Jun 2012 17:44:25 +0000
Subject: [PATCH] Bugfix: remoting lib field validation "ISINT" differed from
 tform validation and leads to 0 values treated as invalid Bugfix: remoting
 lib did include_once instead of include at form definition files, that leads
 to malfunction when using multiple definition files at importing and actions
 like that

---
 interface/lib/classes/remoting_lib.inc.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/interface/lib/classes/remoting_lib.inc.php b/interface/lib/classes/remoting_lib.inc.php
index 7a706321ea..784b9c442c 100644
--- a/interface/lib/classes/remoting_lib.inc.php
+++ b/interface/lib/classes/remoting_lib.inc.php
@@ -44,9 +44,9 @@ Copyright (c) Tri-Plex technology
 *        Tabellendefinition
 *
 *        Datentypen:
-*        - INTEGER (Wandelt Ausdrücke in Int um)
+*        - INTEGER (Wandelt Ausdr�cke in Int um)
 *        - DOUBLE
-*        - CURRENCY (Formatiert Zahlen nach Währungsnotation)
+*        - CURRENCY (Formatiert Zahlen nach W�hrungsnotation)
 *        - VARCHAR (kein weiterer Format Check)
 *        - DATE (Datumsformat, Timestamp Umwandlung)
 *
@@ -60,10 +60,10 @@ Copyright (c) Tri-Plex technology
 *        - Wert oder Array
 *
 *        SEPARATOR
-*        - Trennzeichen für multiple Felder
+*        - Trennzeichen f�r multiple Felder
 *
 *        Hinweis:
-*        Das ID-Feld ist nicht bei den Table Values einzufügen.
+*        Das ID-Feld ist nicht bei den Table Values einzuf�gen.
 */
 
 class remoting_lib {
@@ -121,7 +121,7 @@ class remoting_lib {
     	function loadFormDef($file) {
 			global $app,$conf;
             
-			include_once($file);
+			include($file);
 				
 			$this->formDef = $form;
 			unset($this->formDef['tabs']);
@@ -474,7 +474,7 @@ class remoting_lib {
                                 break;
                                 case 'ISINT':
 									if(function_exists('filter_var')) {
-										if(!filter_var($field_value, FILTER_VALIDATE_INT)) {
+										if($vield_value != '' && filter_var($field_value, FILTER_VALIDATE_INT) === false) {
 											$errmsg = $validator['errmsg'];
                                             if(isset($this->wordbook[$errmsg])) {
                                                 $this->errorMessage .= $this->wordbook[$errmsg]."<br />\r\n";
-- 
GitLab