diff options
| author | Damien Regad <dregad@mantisbt.org> | 2019-08-23 16:28:39 +0200 |
|---|---|---|
| committer | Damien Regad <dregad@mantisbt.org> | 2019-08-23 16:28:39 +0200 |
| commit | cc178f46adc173997f3abb4eabec5fe4506fa429 (patch) | |
| tree | 811b8ebbc2f34820cb1a2194a44ad98bd0590176 /pear | |
| parent | 518f46cde7ff0022f579e474d3fcf92cc3d9ec5b (diff) | |
| parent | 23cfd2480e3c77b5928432c10bda69b252efcd2c (diff) | |
| download | adodb-cc178f46adc173997f3abb4eabec5fe4506fa429.tar.gz adodb-cc178f46adc173997f3abb4eabec5fe4506fa429.tar.bz2 adodb-cc178f46adc173997f3abb4eabec5fe4506fa429.zip | |
Merge branch 'hotfix/5.20'
# Conflicts:
# docs/changelog.md
Diffstat (limited to 'pear')
| -rw-r--r-- | pear/Auth/Container/ADOdb.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/Auth/Container/ADOdb.php b/pear/Auth/Container/ADOdb.php index 7586213a..d2bb299d 100644 --- a/pear/Auth/Container/ADOdb.php +++ b/pear/Auth/Container/ADOdb.php @@ -199,7 +199,7 @@ class Auth_Container_ADOdb extends Auth_Container /* Include additional fields if they exist */ if(!empty($this->options['db_fields'])){ if(is_array($this->options['db_fields'])){ - $this->options['db_fields'] = join($this->options['db_fields'], ', '); + $this->options['db_fields'] = join(', ', $this->options['db_fields'], ); } $this->options['db_fields'] = ', '.$this->options['db_fields']; } |
