diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2013-07-31 02:32:52 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2013-07-31 02:32:52 +0530 |
| commit | d96d64babad4421cc29a6fe668f570aedd8e213a (patch) | |
| tree | 6e8abd55444f0579ca9ac34832966641eb2d6a70 | |
| parent | 07ba2ed8722c2790d51bdbfdfabab01ea54d7001 (diff) | |
| parent | 8892205644a9423998441472b48a29dcea321360 (diff) | |
| download | forums-d96d64babad4421cc29a6fe668f570aedd8e213a.tar forums-d96d64babad4421cc29a6fe668f570aedd8e213a.tar.gz forums-d96d64babad4421cc29a6fe668f570aedd8e213a.tar.bz2 forums-d96d64babad4421cc29a6fe668f570aedd8e213a.tar.xz forums-d96d64babad4421cc29a6fe668f570aedd8e213a.zip | |
Merge remote-tracking branch 'Elsensee/ticket/11757' into develop
# By Oliver Schramm
# Via Oliver Schramm
* Elsensee/ticket/11757:
[ticket/11757] Fix typo in signature_module_auth migration
| -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; |
