Author: mcantelon
Date: Thu May 10 14:36:49 2012
New Revision: 11662
Log:
Got rid of PHP notice.
Modified:
trunk/lib/task/import/csvImportTask.class.php
Modified: trunk/lib/task/import/csvImportTask.class.php
==============================================================================
--- trunk/lib/task/import/csvImportTask.class.php Thu May 10 13:26:31
2012 (r11661)
+++ trunk/lib/task/import/csvImportTask.class.php Thu May 10 14:36:49
2012 (r11662)
@@ -457,7 +457,10 @@
)
{
// create/fetch container
- $type = ($self->rowStatusVars['physicalObjectType'])
+ $type = (
+ isset($self->rowStatusVars['physicalObjectType'])
+ && $self->rowStatusVars['physicalObjectType']
+ )
? $self->rowStatusVars['physicalObjectType']
: 'Box';
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/qubit-commits?hl=en.