Објављен је Вордпрес у верзији 2.6.5 која затвара сигурносни пропуст.
Направио сам пакет за надоградњу верзије 2.6.3 на 2.6.5, који садржи само измењене датотеке и akismet.php за који је diff такође рекао да је измењен:
diff -r wordpress-2.6.3/wp-content/plugins/akismet/akismet.php wordpress-2.6.5/wp-content/plugins/akismet/akismet.php
705,707c705,710
< global $submenu;
< if ( isset( $submenu['edit-comments.php'] ) )
< $link = 'edit-comments.php';
---
> global $submenu, $wp_db_version;
>
> if ( 8645 < $wp_db_version ) // 2.7
> $link = 'edit-comments.php?comment_status=spam';
> elseif ( isset( $submenu['edit-comments.php'] ) )
> $link = 'edit-comments.php?page=akismet-admin';
709c712
< $link = 'edit.php';
---
> $link = 'edit.php?page=akismet-admin';
726c729
< ), number_format_i18n( $queue_count ), clean_url("$link?page=akismet-admin") );
---
> ), number_format_i18n( $queue_count ), clean_url($link) );
728c731
< $queue_text = sprintf( __( "but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), clean_url("$link?page=akismet-admin") );
---
> $queue_text = sprintf( __( "but there's nothing in your <a href='%1\$s'>spam queue</a> at the moment." ), clean_url($link) );