diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-30 22:32:05 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-07-30 22:41:12 +0200 |
commit | 8892205644a9423998441472b48a29dcea321360 (patch) | |
tree | 6e8abd55444f0579ca9ac34832966641eb2d6a70 /phpBB/phpbb/db | |
parent | 07ba2ed8722c2790d51bdbfdfabab01ea54d7001 (diff) | |
download | forums-8892205644a9423998441472b48a29dcea321360.tar forums-8892205644a9423998441472b48a29dcea321360.tar.gz forums-8892205644a9423998441472b48a29dcea321360.tar.bz2 forums-8892205644a9423998441472b48a29dcea321360.tar.xz forums-8892205644a9423998441472b48a29dcea321360.zip |
[ticket/11757] Fix typo in signature_module_auth migration
PHPBB3-11757
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/310/signature_module_auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/310/signature_module_auth.php b/phpBB/phpbb/db/migration/data/310/signature_module_auth.php index e4fbb27bcb..02cd70059a 100644 --- a/phpBB/phpbb/db/migration/data/310/signature_module_auth.php +++ b/phpBB/phpbb/db/migration/data/310/signature_module_auth.php @@ -17,7 +17,7 @@ class phpbb_db_migration_data_310_signature_module_auth extends phpbb_db_migrati AND module_basename = 'ucp_profile' AND module_mode = 'signature'"; $result = $this->db->sql_query($sql); - $module_auth = $this->db_sql_fetchfield('module_auth'); + $module_auth = $this->db->sql_fetchfield('module_auth'); $this->db->sql_freeresult($result); return $module_auth === 'acl_u_sig' || $module_auth === false; |