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_last_modified)) && ($client_etag == $wp_etag)) :
((strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_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_last_modified)) && ($client_etag == $wp_etag)) :
(($client_last_modified && strtotime($client_last_modified) >= strtotime($wp_last_modified)) || ($client_etag == $wp_etag)) ) {
if ( preg_match(’/cgi/’,php_sapi_name()) ) {
header(’Status: 304 Not Modified’);
echo "\r\n\r\n";


Quieres opinar?
Comparte tus impresiones, e inicia la conversación.
Deja tu comentario
Puedes suscribirte al Feed RSS de los comentarios de esta entrada. También puedes dejar un trackback si has hablado de lo mismo en tu blog.