diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-21 19:20:26 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-01-21 19:20:26 +0000 |
| commit | e4be0ca79951d9ee13d85504d1c9d16391389f63 (patch) | |
| tree | 78ec3604a3142ca58aa9f0d0406035565cd6f28f /phpBB/adm/admin_database.php | |
| parent | 1438067953f4a6b7fd99f40391febe150cd39534 (diff) | |
| download | forums-e4be0ca79951d9ee13d85504d1c9d16391389f63.tar forums-e4be0ca79951d9ee13d85504d1c9d16391389f63.tar.gz forums-e4be0ca79951d9ee13d85504d1c9d16391389f63.tar.bz2 forums-e4be0ca79951d9ee13d85504d1c9d16391389f63.tar.xz forums-e4be0ca79951d9ee13d85504d1c9d16391389f63.zip | |
- removed unnecessary pm options
- added one option to clearly define email visibility
git-svn-id: file:///svn/phpbb/trunk@5071 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_database.php')
| -rw-r--r-- | phpBB/adm/admin_database.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/adm/admin_database.php b/phpBB/adm/admin_database.php index b6d7586242..6d217fbafc 100644 --- a/phpBB/adm/admin_database.php +++ b/phpBB/adm/admin_database.php @@ -802,11 +802,11 @@ function get_table_def_mysql($table, $crlf) if (get_magic_quotes_runtime()) { - return(stripslashes($schema_create)); + return stripslashes($schema_create); } else { - return($schema_create); + return $schema_create; } } // End get_table_def_mysql |
