Add it to the changelog. I always forget to commit this file.....

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@5591 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-02-26 19:37:50 +00:00
parent 7e5a4434ad
commit bc46c92187
2 changed files with 2 additions and 1 deletions

View file

@ -91,6 +91,7 @@ p,ul,td {font-size:10pt;}
<li>[Sec] Escape any special characters in reverse dns - Anthrax101</li> <li>[Sec] Escape any special characters in reverse dns - Anthrax101</li>
<li>[Sec] Typecast poll id values - Anthrax101</li> <li>[Sec] Typecast poll id values - Anthrax101</li>
<li>[Sec] Added configurable search flood control to reduce the effect of DoS style attacks</li> <li>[Sec] Added configurable search flood control to reduce the effect of DoS style attacks</li>
<li>[Sec] Changed the way we create "random" values for use as keys - chinchilla/Anthrax101</li>
<li>[Change] Changed handling of the case where a selected style doesn't exist in the database</li> <li>[Change] Changed handling of the case where a selected style doesn't exist in the database</li>
<li>[Change] Changed handling of topic pruning to improve performance</li> <li>[Change] Changed handling of topic pruning to improve performance</li>
</ul> </ul>

View file

@ -154,7 +154,7 @@ function dss_rand()
$val = md5($val); $val = md5($val);
$board_config['rand_seed'] = md5($board_config['rand_seed'] . $val . 'a'); $board_config['rand_seed'] = md5($board_config['rand_seed'] . $val . 'a');
if($seeded !== true) if($dss_seeded !== true)
{ {
$sql = "UPDATE " . CONFIG_TABLE . " SET $sql = "UPDATE " . CONFIG_TABLE . " SET
config_value = '" . $board_config['rand_seed'] . "' config_value = '" . $board_config['rand_seed'] . "'