diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-10-29 16:11:43 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-10-29 16:11:43 +0100 |
commit | 848572596c165f925607dbdf7a672b3f3eac31f2 (patch) | |
tree | e823599eea8c3c398a770fdd82d156cbfa38e6e9 /system | |
parent | 773898ca303b1af65d39db16c93983f91a946f8f (diff) | |
parent | 8bcdb30539d226041fbe0f8c7e3c0b5d038edebc (diff) |
Merge pull request #1936 from etcgroup/2.1-stable
Bug in 2.1-stable - language typo in Migrations library
Diffstat (limited to 'system')
-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; } |