diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-23 13:19:14 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-04-23 13:19:14 +0200 |
commit | 55ac2138482154c3aed7d6a6a2b6f196d0a04d9e (patch) | |
tree | 3098e5649f7ef0675dec40902ed3aa645d69e9dd | |
parent | 476af3a89058861e7d44473ac01c2206ebbbe6f1 (diff) | |
parent | c1a66512eacc76968cbf01e2ee37c3c65584b1f0 (diff) |
Merge pull request #1274 from Repox/2.1-stable
Corrected the migration_missing_down_method language string
-rw-r--r-- | system/language/english/migration_lang.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/language/english/migration_lang.php b/system/language/english/migration_lang.php index 4763ca243..f17530f00 100644 --- a/system/language/english/migration_lang.php +++ b/system/language/english/migration_lang.php @@ -5,7 +5,7 @@ $lang['migration_not_found'] = "This migration could not be found."; $lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d."; $lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found."; $lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method."; -$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'up' method."; +$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'down' method."; $lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename."; |