• Resolved hitoride

    (@hitoride)


    If themes authors leave spaces between “Author URI:” and their uri in their theme file, an XHTML parsing error appears.
    Add $author_uri[1] = trim($author_uri[1]);
    at line 1734 of ./wp-includes/functions.php to solve the problem.

Viewing 1 replies (of 1 total)
  • Thread Starter hitoride

    (@hitoride)

    Another one failure appears when you have not any link in the “Incoming Links” section of the admin pannel.
    To solve the problem, simply change line 28 of ./wp-admin/index.php from […]<?php echo wp_filter_kses($item[‘link’]); ?>[…] to […]<?php echo (wp_filter_kses($item[‘link’]) == “”)?’.’:wp_filter_kses($item[‘link’]); ?>[…]

Viewing 1 replies (of 1 total)
  • The topic ‘XHTML Validation failed cause of malformed uri’ is closed to new replies.