Author: david
Date: Wed May  2 16:54:47 2012
New Revision: 11597

Log:
Format error message

Modified:
   trunk/lib/task/migrate/arUpgradeSqlTask.class.php

Modified: trunk/lib/task/migrate/arUpgradeSqlTask.class.php
==============================================================================
--- trunk/lib/task/migrate/arUpgradeSqlTask.class.php   Wed May  2 16:49:22 
2012        (r11596)
+++ trunk/lib/task/migrate/arUpgradeSqlTask.class.php   Wed May  2 16:54:47 
2012        (r11597)
@@ -65,10 +65,14 @@
     $this->getInitialVersion();
 
     // Use old migration script for versions before 75
-    if (null == $this->initialVersion || 81 > $this->initialVersion)
+    if (null == $this->initialVersion || 75 > $this->initialVersion)
     {
-      $this->logSection('upgrade-sql', 'Please use the propel:migrate task for
-        upgrading from Qubit releases before Release 1.2.');
+      $this->logBlock(array(
+        '',
+        'Please use the propel:migrate task for upgrading',
+        'from Qubit releases prior to Release 1.2',
+        ''),
+        'ERROR');
 
       return 1;
     }

-- 
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.

Reply via email to