diff options
author | Michael Brooks <mjbrooks@uw.edu> | 2012-10-28 02:01:47 +0200 |
---|---|---|
committer | Michael Brooks <mjbrooks@uw.edu> | 2012-10-28 02:01:47 +0200 |
commit | 8bcdb30539d226041fbe0f8c7e3c0b5d038edebc (patch) | |
tree | e823599eea8c3c398a770fdd82d156cbfa38e6e9 | |
parent | 773898ca303b1af65d39db16c93983f91a946f8f (diff) |
Fix language typo in Migrations library
lang and line were out of order
-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 df2dd7ce3..ffa640ba6 100644 --- a/system/libraries/Migration.php +++ b/system/libraries/Migration.php @@ -220,7 +220,7 @@ class CI_Migration { { if ( ! $migrations = $this->find_migrations()) { - $this->_error_string = $this->line->lang('migration_none_found'); + $this->_error_string = $this->lang->line('migration_none_found'); return false; } |