Author: david
Date: Mon Jun 27 11:48:53 2011
New Revision: 9189
Log:
Fix bug - was skipping 1.0.7 -> 1.0.8 migration
Modified:
trunk/lib/task/migrate/MigrateTask.class.php
Modified: trunk/lib/task/migrate/MigrateTask.class.php
==============================================================================
--- trunk/lib/task/migrate/MigrateTask.class.php Mon Jun 27 10:46:24
2011 (r9188)
+++ trunk/lib/task/migrate/MigrateTask.class.php Mon Jun 27 11:48:53
2011 (r9189)
@@ -38,7 +38,8 @@
'1.0.4',
'1.0.5',
'1.0.6',
- '1.0.7'
+ '1.0.7',
+ '1.0.8'
);
/**
@@ -124,11 +125,11 @@
protected function migratePre108()
{
- // If target release is not set, then use last valid release (1.0.7)
+ // If target release is not set, then use last major milestone
$targetVersion = $this->targetVersion;
if (null == $targetVersion)
{
- $targetVersion = '1.0.7';
+ $targetVersion = '1.0.8';
}
// Incrementally call the upgrade task for each intervening release from
--
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.