Author: david
Date: 2008-12-15 15:41:28 -0800 (Mon, 15 Dec 2008)
New Revision: 1686
Modified:
trunk/qubit/lib/task/migrate/QubitMigrate103to104.class.php
Log:
Remove some debugging code from migration task and stop writing data array to
temp file.
Modified: trunk/qubit/lib/task/migrate/QubitMigrate103to104.class.php
===================================================================
--- trunk/qubit/lib/task/migrate/QubitMigrate103to104.class.php 2008-12-15
22:02:24 UTC (rev 1685)
+++ trunk/qubit/lib/task/migrate/QubitMigrate103to104.class.php 2008-12-15
23:41:28 UTC (rev 1686)
@@ -107,18 +107,6 @@
// Sort classes
$this->sortClasses();
- ob_start();
- var_dump($this->data);
- $dataString = ob_get_contents();
- ob_end_clean();
-
- if (!($fh = fopen('./updatedDataArray.txt', 'w')))
- {
- die('Couldn\'t open file');
- }
- fwrite($fh, $dataString);
- fclose($fh);
-
return $this;
}
@@ -190,7 +178,6 @@
{
// If this was a subject access point relationship, then give the 1.0.4
// event type_id = 'subject'
- var_dump($columns['actor_role_id']);
if ($columns['actor_role_id'] == $oldSubjectKey &&
!isset($columns['type_id']))
{
$this->data['QubitEvent'][$key]['type_id'] = 'QubitTerm_subject';
--~--~---------~--~----~------------~-------~--~----~
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.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---