function appendPathWay( $title, $link = null ) { if ( method_exists( $this->_baseFramework, 'appendPathWay' ) ) { if ( checkJversion() == 1 ) { return $this->_baseFramework->appendPathWay( $title, $link ); } else { // don't process link, as some version do htmlspecialchar those: // if ( $link ) { // $title = '<a href="' . $link . '">' . $title . '</a>'; // } return $this->_baseFramework->appendPathWay( $title ); } } else { return null; } }