diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-12-13 21:31:07 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-12-13 21:31:07 +0100 |
commit | 4e045ed767603547d6aa9126d22a42bd690a1dd1 (patch) | |
tree | 181da44bf9525c64dd0344bd6ad7b77d2dd21308 /phpBB/phpbb/db | |
parent | 9f055e1af39f36ff18cc278093000cb30c858885 (diff) | |
download | forums-4e045ed767603547d6aa9126d22a42bd690a1dd1.tar forums-4e045ed767603547d6aa9126d22a42bd690a1dd1.tar.gz forums-4e045ed767603547d6aa9126d22a42bd690a1dd1.tar.bz2 forums-4e045ed767603547d6aa9126d22a42bd690a1dd1.tar.xz forums-4e045ed767603547d6aa9126d22a42bd690a1dd1.zip |
[ticket/15322] Try to make new email setting more readable
PHPBB3-15322
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/email_force_sender.php (renamed from phpBB/phpbb/db/migration/data/v32x/email_envelope_sender.php) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/email_envelope_sender.php b/phpBB/phpbb/db/migration/data/v32x/email_force_sender.php index 2ba83f40df..5319b7f76e 100644 --- a/phpBB/phpbb/db/migration/data/v32x/email_envelope_sender.php +++ b/phpBB/phpbb/db/migration/data/v32x/email_force_sender.php @@ -13,7 +13,7 @@ namespace phpbb\db\migration\data\v32x; -class email_envelope_sender extends \phpbb\db\migration\migration +class email_force_sender extends \phpbb\db\migration\migration { static public function depends_on() { @@ -24,13 +24,13 @@ class email_envelope_sender extends \phpbb\db\migration\migration public function effectively_installed() { - return isset($this->config['email_envelope_sender']); + return isset($this->config['email_force_sender']); } public function update_data() { return array( - array('config.add', array('email_envelope_sender', '0')), + array('config.add', array('email_force_sender', '0')), array('config.remove', array('email_function_name')), ); } |