Ver Mensaje Individual
  #6 (permalink)  
Antiguo 16/02/2012, 00:23
marisabea
 
Fecha de Ingreso: febrero-2012
Mensajes: 3
Antigüedad: 12 años, 2 meses
Puntos: 0
Respuesta: Fatal error: require() [function.require]: Failed opening required

Gracias por responder, Panchompc. Aquí va el trozo de código alrededor de la línea 1071

1065 * @param int|object $revision Revision ID or revision object.
1066 * @param bool $link Optional, default is true. Link to revisions's page?
1067 * @return string i18n formatted datetimestamp or localized 'Current Revision'.
1068 */
1069 function wp_post_revision_title( $revision, $link = true ) {
1070 if ( !$revision = get_post( $revision ) )
1071 return $revision;
1072
1073 if ( !in_array( $revision->post_type, array( 'post', 'page', 'revision' ) ) )
1074 return false;
1075
1076 /* translators: revision date format, see http://php.net/date */
1077 $datef = _x( 'j F, Y @ G:i', 'revision date format');
1078 /* translators: 1: date */

Desde ya muchas gracias por tu colaboración.