|
28.04.2006, 02:07
Фиксин найденные баги:
Открываем includes/functions_post.php
Находим:
PHP код:
$message = addslashes($message);
Ниже добавляем:
PHP код:
$message = str_replace('"', '\"', $message);
Открываем modules/Private_Messages/index.php
Находим:
PHP код:
obtain_word_list($orig_word, $replace_word);
Заменяем на:
PHP код:
obtain_word_list($orig_word, $replacement_word);
Открываем modules/Forums/login.php
Находим:
PHP код:
// Only store a failed login attempt for an active user - inactive users can't login even with a correct password elseif( $row['user_active'] ) { // Save login tries and last login if ($row['user_id'] != ANONYMOUS)
Заменяем на:
PHP код:
else { // Save login tries and last login, but only store a failed login attempt for an // active user - inactive users can't login even with a correct password if ( $row['user_id'] != ANONYMOUS && $row['user_active'] )
Открываем includes/functions.php
Находим:
Заменяем на:
PHP код:
return substr($val, 4, 16);
Открываем modules/Forums/login.php
Находим:
PHP код:
return ( $hash ) ? md5($rand_str) : substr($rand_str, 8);
Заменяем на:
PHP код:
return ( $hash ) ? md5($rand_str) : substr($rand_str, 0, 8);
|
|