mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
wonderful, another change... now come slap me to death... conquering mars.
git-svn-id: file:///svn/phpbb/trunk@8269 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
7c793ba9d7
commit
0881e608f8
3 changed files with 4 additions and 7 deletions
|
@ -83,7 +83,8 @@
|
|||
<a name="v30rc8"></a><h3>1.i. Changes since 3.0.RC8</h3>
|
||||
|
||||
<ul>
|
||||
<li>[Fix] Cleaned usernames contain only single spaces, so "a_name" and "a__name" are treated as the same name (Bug #15634)</li>
|
||||
<li>[Fix] Cleaned usernames contain only single spaces, so "a_name" and "a__name" are treated as the same name (Bug #15634)</li>
|
||||
<li>[Fix] Check "able to disable word censor" option while applying word censor on text (Bug #15974)</li>
|
||||
</ul>
|
||||
|
||||
<a name="v30rc7"></a><h3>1.ii. Changes since 3.0.RC7</h3>
|
||||
|
|
|
@ -73,12 +73,7 @@ class cache extends acm
|
|||
*/
|
||||
function obtain_word_list()
|
||||
{
|
||||
global $config, $user, $db;
|
||||
|
||||
if (!$user->optionget('viewcensors') && $config['allow_nocensors'])
|
||||
{
|
||||
return array();
|
||||
}
|
||||
global $db;
|
||||
|
||||
if (($censors = $this->get('_word_censors')) === false)
|
||||
{
|
||||
|
|
|
@ -2837,6 +2837,7 @@ function phpbb_checkdnsrr($host, $type = '')
|
|||
return NULL;
|
||||
}
|
||||
|
||||
// @exec('nslookup -retry=1 -timout=1 -type=' . escapeshellarg($type) . ' ' . escapeshellarg($host), $output);
|
||||
@exec('nslookup -type=' . escapeshellarg($type) . ' ' . escapeshellarg($host), $output);
|
||||
|
||||
// If output is empty, the nslookup failed
|
||||
|
|
Loading…
Add table
Reference in a new issue