1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-26 03:40:54 +03:00

Fixed bug in db:migrate where it wasn't parsing input lists of locations properly

This commit is contained in:
Matt Button 2010-12-30 03:32:39 +00:00
parent de7711942f
commit 5247abc23a

View file

@ -122,7 +122,7 @@ class Minion_Task_Db_Migrate extends Minion_Task
return $location;
$locations = array();
$location = trim($location, ',');
$location = explode(',', trim($location, ','));
if( ! empty($location))
{