aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-12-13 21:31:07 +0100
committerMarc Alexander <admin@m-a-styles.de>2017-12-13 21:31:07 +0100
commit4e045ed767603547d6aa9126d22a42bd690a1dd1 (patch)
tree181da44bf9525c64dd0344bd6ad7b77d2dd21308 /phpBB/phpbb/db
parent9f055e1af39f36ff18cc278093000cb30c858885 (diff)
downloadforums-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')),
);
}