WordPress 1.5.1 disponible

Hoy ha sido liberada la nueva versión de WordPress, la 1.5.1, que ya puede ser descargada en la web oficial.

Actualización

La nueva versión tiene un problema con los feeds RSS, que ya ha sido solucionado. Hay que editar el archivo wp-blog-header.php y sustituir en la línea 136:

if ( ($client_last_modified && $client_etag) ?
((strtotime($client_last_modified) >= strtotime($wp_1_last_modified)) && ($client_etag == $wp_1_etag)) :
((strtotime($client_last_modified) >= strtotime($wp_1_last_modified)) || ($client_etag == $wp_1_etag)) ) {
if ( preg_match(‘/cgi/’,php_sapi_name()) ) {
header(‘Status: 304 Not Modified’);
echo "\r\n\r\n";

por esto:

if ( ($client_last_modified && $client_etag) ?
((strtotime($client_last_modified) >= strtotime($wp_1_last_modified)) && ($client_etag == $wp_1_etag)) :
(($client_last_modified && strtotime($client_last_modified) >= strtotime($wp_1_last_modified)) || ($client_etag == $wp_1_etag)) ) {
if ( preg_match(‘/cgi/’,php_sapi_name()) ) {
header(‘Status: 304 Not Modified’);
echo "\r\n\r\n";


Comentar

 

XHTML: Puedes usar estos tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>