Can't have step 0
Jeremy D

Jeremy D commited on 2011-10-19 20:26:28
Showing 1 changed files, with 8 additions and 8 deletions.

... ...
@@ -354,14 +354,14 @@ class mbt_to_tbg extends tbg_converter
354 354
 	// What steps shall we take.
355 355
 	protected $steps = array(
356 356
 		// Key => array('Descriptive', 'functionName', (int) step_size),
357
-		0 = > array('Users', 'doStep1', 500),
358
-		1 = > array('Projects', 'doStep2', 500),
359
-		2 = > array('Categories', 'doStep3', 500),
360
-		3 = > array('Versions', 'doStep4', 500),
361
-		4 = > array('Issues', 'doStep5', 500),
362
-		5 = > array('Comments', 'doStep6', 500),
363
-		6 = > array('Relationships', 'doStep7', 500),
364
-		7 = > array('Attachments', 'doStep8', 100),
357
+		1 = > array('Users', 'doStep1', 500),
358
+		array('Projects', 'doStep2', 500),
359
+		array('Categories', 'doStep3', 500),
360
+		array('Versions', 'doStep4', 500),
361
+		array('Issues', 'doStep5', 500),
362
+		array('Comments', 'doStep6', 500),
363
+		array('Relationships', 'doStep7', 500),
364
+		array('Attachments', 'doStep8', 100),
365 365
 	);
366 366
 	/**
367 367
 	 * Set the prefix that will be used prior to every reference of a table
368 368