Warning: Declaration of PortfolioWalker::start_el(&$output, $category, $depth, $args) should be compatible with Walker_Category::start_el(&$output, $data_object, $depth = 0, $args = Array, $current_object_id = 0) in /home/webundso/public_html/webundso.ch/wp-content/themes/rivers/library/includes/portfolio_walker.php on line 4

Warning: Declaration of PortfolioWalker2::start_el(&$output, $category, $depth, $args) should be compatible with Walker_Category::start_el(&$output, $data_object, $depth = 0, $args = Array, $current_object_id = 0) in /home/webundso/public_html/webundso.ch/wp-content/themes/rivers/library/includes/portfolio_walker.php on line 37
Mit Jquery alle _blank in _top umwandeln - webundso GmbH - Internet-Agentur für TYPO3 und WordPress

Das Problem war, dass bei einer älteren, nicht von mir erstellten TYPO3-Installation, alle internen Links mit der Klasse „internal-link“ in einem neuen Fenster geöffnet wurden (target = _blank).
Da der Fehler nicht zu lokalisieren war, behalf ich mir mit einem Jquery-Einzeiler:

1
$('a.internal-link').attr('target', '_top');

Kommentieren?