Author: david
Date: Wed Dec 15 14:38:43 2010
New Revision: 8890
Log:
Fix notices.
Modified:
trunk/lib/task/migrate/QubitMigrate108.class.php
Modified: trunk/lib/task/migrate/QubitMigrate108.class.php
==============================================================================
--- trunk/lib/task/migrate/QubitMigrate108.class.php Wed Dec 15 07:39:05
2010 (r8889)
+++ trunk/lib/task/migrate/QubitMigrate108.class.php Wed Dec 15 14:38:43
2010 (r8890)
@@ -1435,7 +1435,7 @@
{
foreach ($this->data['QubitMenu'] as $key => $row)
{
- if (!isset($row['label']))
+ if (!isset($row['label']) || !isset($row['label']['en']))
{
continue;
}
@@ -1597,7 +1597,7 @@
{
foreach ($qubitTermArray as $key => $term)
{
- if ($term['id'] == '<?php echo QubitTerm::'.$constantName.'."\n" ?>')
+ if (isset($term['id']) && $term['id'] == '<?php echo
QubitTerm::'.$constantName.'."\n" ?>')
{
$newTermArray[$key] = $term;
unset($qubitTermArray[$key]);
--
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.