Author: david
Date: Thu Dec 16 11:33:18 2010
New Revision: 8894
Log:
Avoid notices.
Modified:
trunk/lib/task/migrate/QubitMigrate109.class.php
Modified: trunk/lib/task/migrate/QubitMigrate109.class.php
==============================================================================
--- trunk/lib/task/migrate/QubitMigrate109.class.php Thu Dec 16 00:02:14
2010 (r8893)
+++ trunk/lib/task/migrate/QubitMigrate109.class.php Thu Dec 16 11:33:18
2010 (r8894)
@@ -342,7 +342,7 @@
foreach ($this->data['QubitRelation'] as $key => $row)
{
- if ($eqKey != $row['type_id'] || null === $eqTerm =
$this->data['QubitTerm'][$row['object_id']])
+ if (!isset($row['type_id']) || $eqKey != $row['type_id'] || null ===
$eqTerm = $this->data['QubitTerm'][$row['object_id']])
{
continue;
}
--
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.