diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-19 22:30:47 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-06-19 22:30:47 +0200 |
commit | af6d85088d54ed35f7c36ed010384ff7592f8959 (patch) | |
tree | e3c9c316506ffb620a442c2cea6a4a138cf464c4 /system/libraries | |
parent | f419afe77bdcad787ab28db4d4be05f8f7bd869b (diff) |
Fixed Migrations and an incorrect strict comparison.
Diffstat (limited to 'system/libraries')
-rw-r--r-- | system/libraries/Migration.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php index 4391b235d..3a1e7a0ad 100644 --- a/system/libraries/Migration.php +++ b/system/libraries/Migration.php @@ -179,7 +179,7 @@ class CI_Migration { // We now prepare to actually DO the migrations // But first let's make sure that everything is the way it should be - for ($i = $start; $i !== $stop; $i += $step) + for ($i = $start; $i != $stop; $i += $step) { $f = glob(sprintf($this->_migration_path.'%03d_*.php', $i)); |