summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorMichael Brooks <mjbrooks@uw.edu>2012-10-28 02:01:47 +0200
committerMichael Brooks <mjbrooks@uw.edu>2012-10-28 02:01:47 +0200
commit8bcdb30539d226041fbe0f8c7e3c0b5d038edebc (patch)
treee823599eea8c3c398a770fdd82d156cbfa38e6e9 /system
parent773898ca303b1af65d39db16c93983f91a946f8f (diff)
Fix language typo in Migrations library
lang and line were out of order
Diffstat (limited to 'system')
-rw-r--r--system/libraries/Migration.php2
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;
}