fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [15724]


From: nelson . guerra
Subject: [Fmsystem-commits] [15724]
Date: Fri, 23 Sep 2016 00:50:52 +0000 (UTC)

Revision: 15724
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=15724
Author:   nelson224
Date:     2016-09-23 00:50:52 +0000 (Fri, 23 Sep 2016)
Log Message:
-----------


Modified Paths:
--------------
    
branches/dev-syncromind-2/property/inc/import/class.import_entity_categories.inc.php

Modified: 
branches/dev-syncromind-2/property/inc/import/class.import_entity_categories.inc.php
===================================================================
--- 
branches/dev-syncromind-2/property/inc/import/class.import_entity_categories.inc.php
        2016-09-23 00:50:39 UTC (rev 15723)
+++ 
branches/dev-syncromind-2/property/inc/import/class.import_entity_categories.inc.php
        2016-09-23 00:50:52 UTC (rev 15724)
@@ -252,6 +252,11 @@
                                );
                                
                                $result = $this->_add_attrib_from_template( 
$values2 );
+                               if (empty($result))
+                               {
+                                       continue;
+                               }
+                               
                                if ($result['error'])
                                {
                                        foreach ($result['error'] as $error) 
@@ -260,9 +265,9 @@
                                        }
                                } else {
                                        $count++;
-                                       
                                }
                        }
+                       
                        if ($count)
                        {
                                $receipt['message'][] = array('msg' => 
lang('attributes has been added to %1 entity categories', $count));
@@ -342,7 +347,7 @@
                                
                                if (!$id)
                                {
-                                       $receipt['error'][] = array('msg' => 
lang('Unable to add field %1 ', $attrib['column_name']));
+                                       $receipt['error'][] = array('msg' => 
lang('Unable to add attribute %1 ', $attrib['column_name']));
                                }
                        }
                        
@@ -394,7 +399,7 @@
                                        
                                        if(in_array($attrib['column_name'], 
$current_attrib_names, true))
                                        {
-                                               $receipt['error'][] = 
array('msg' => lang('Column name %1 already exists, please choose another 
name', $attrib['column_name']));
+                                               $receipt['error'][] = 
array('msg' => lang('Attribute name %1 already exists, please choose another 
name', $attrib['column_name']));
                                                break;
                                        }
                                        
@@ -429,12 +434,12 @@
                                $id = $this->custom->add($attrib);      
                                if ($id <= 0)
                                {
-                                       $receipt['error'][] = array('msg' => 
lang('Unable to add field %1 ', $attrib['column_name']));
+                                       $receipt['error'][] = array('msg' => 
lang('Unable to add attribute %1 ', $attrib['column_name']));
                                        break;
                                }
                                else if ($id == -1)
                                {
-                                       $receipt['error'][] = array('msg' => 
lang('field %1 already exists, please choose another name', 
$attrib['column_name']));
+                                       $receipt['error'][] = array('msg' => 
lang('attribute %1 already exists, please choose another name', 
$attrib['column_name']));
                                        $receipt['error'][] = array('msg' => 
lang('Attribute %1 has NOT been saved', $attrib['column_name']));
                                        break;
                                }
@@ -456,12 +461,12 @@
                        
                        if (!$values['column_name'])
                        {
-                               $receipt['error'][] = array('msg' => 
lang('Column name not entered!'));
+                               $receipt['error'][] = array('msg' => 
lang('Attribute name not entered!'));
                        }
 
                        if (!preg_match('/^[a-z0-9_]+$/i', 
$values['column_name']))
                        {
-                               $receipt['error'][] = array('msg' => 
lang('Column name %1 contains illegal character', $values['column_name']));
+                               $receipt['error'][] = array('msg' => 
lang('Attribute name %1 contains illegal character', $values['column_name']));
                        }
 
                        if (!$values['input_text'])




reply via email to

[Prev in Thread] Current Thread [Next in Thread]