mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/10847] fixing all misspelled "dependant" to "dependent"
PHPBB3-10847
This commit is contained in:
parent
2a92fee06d
commit
b83fa0349a
6 changed files with 6 additions and 6 deletions
|
@ -397,7 +397,7 @@ foreach ($supported_dbms as $dbms)
|
|||
}
|
||||
}
|
||||
|
||||
// Adjust default value if db-dependant specified
|
||||
// Adjust default value if db-dependent specified
|
||||
if (is_array($column_data[1]))
|
||||
{
|
||||
$column_data[1] = (isset($column_data[1][$dbms])) ? $column_data[1][$dbms] : $column_data[1]['default'];
|
||||
|
|
|
@ -176,7 +176,7 @@ foreach ($schema_data as $table_name => $table_data)
|
|||
$column_type = $dbms_type_map['mysql_41'][$column_data[0]];
|
||||
}
|
||||
|
||||
// Adjust default value if db-dependant specified
|
||||
// Adjust default value if db-dependent specified
|
||||
if (is_array($column_data[1]))
|
||||
{
|
||||
$column_data[1] = (isset($column_data[1][$dbms])) ? $column_data[1][$dbms] : $column_data[1]['default'];
|
||||
|
|
|
@ -1503,7 +1503,7 @@ class phpbb_db_tools
|
|||
$column_type = $this->dbms_type_map[$this->sql_layer][$column_data[0]];
|
||||
}
|
||||
|
||||
// Adjust default value if db-dependant specified
|
||||
// Adjust default value if db-dependent specified
|
||||
if (is_array($column_data[1]))
|
||||
{
|
||||
$column_data[1] = (isset($column_data[1][$this->sql_layer])) ? $column_data[1][$this->sql_layer] : $column_data[1]['default'];
|
||||
|
|
|
@ -1933,7 +1933,7 @@ function utf8_wordwrap($string, $width = 75, $break = "\n", $cut = false)
|
|||
* UTF8-safe basename() function
|
||||
*
|
||||
* basename() has some limitations and is dependent on the locale setting
|
||||
* according to the PHP manual. Therefore we provide our own locale independant
|
||||
* according to the PHP manual. Therefore we provide our own locale independent
|
||||
* basename function.
|
||||
*
|
||||
* @param string $filename The filename basename() should be applied to
|
||||
|
|
|
@ -411,7 +411,7 @@ $lang = array_merge($lang, array(
|
|||
|
||||
// Server Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_SERVER_SETTINGS_EXPLAIN' => 'Here you define server and domain dependant settings. Please ensure the data you enter is accurate, errors will result in emails containing incorrect information. When entering the domain name remember it does include http:// or other protocol term. Only alter the port number if you know your server uses a different value, port 80 is correct in most cases.',
|
||||
'ACP_SERVER_SETTINGS_EXPLAIN' => 'Here you define server and domain dependent settings. Please ensure the data you enter is accurate, errors will result in emails containing incorrect information. When entering the domain name remember it does include http:// or other protocol term. Only alter the port number if you know your server uses a different value, port 80 is correct in most cases.',
|
||||
|
||||
'ENABLE_GZIP' => 'Enable GZip compression',
|
||||
'ENABLE_GZIP_EXPLAIN' => 'Generated content will be compressed prior to sending it to the user. This can reduce network traffic but will also increase CPU usage on both server and client side. Requires zlib PHP extension to be loaded.',
|
||||
|
|
|
@ -1099,7 +1099,7 @@ while ($row = $db->sql_fetchrow($result))
|
|||
{
|
||||
$user_sig = '';
|
||||
|
||||
// We add the signature to every posters entry because enable_sig is post dependant
|
||||
// We add the signature to every posters entry because enable_sig is post dependent
|
||||
if ($row['user_sig'] && $config['allow_sig'] && $user->optionget('viewsigs'))
|
||||
{
|
||||
$user_sig = $row['user_sig'];
|
||||
|
|
Loading…
Add table
Reference in a new issue