Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #195 from DamianS1987/bugfix-strickt_standards
Browse files Browse the repository at this point in the history
fixed issue 194 strickt standards
  • Loading branch information
olefredrik committed Jan 20, 2015
2 parents 1068e35 + 5372090 commit 74c8444
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/foundation.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function FoundationPress_active_list_pages_class( $input ) {
add_filter( 'wp_list_pages', 'FoundationPress_active_list_pages_class', 10, 2 );


class FoundationPress_comments extends Walker_Comment {
class FoundationPress_comments extends Walker_Comment{

// init classwide variables
var $tree_type = 'comment';
Expand Down Expand Up @@ -110,7 +110,7 @@ function end_lvl( &$output, $depth = 0, $args = array() ) {
<?php }

/** START_EL */
function start_el( &$output, $comment, $depth, $args, $id = 0 ) {
function start_el( &$output, $comment, $depth = 0, $args = array(), $id = 0 ) {
$depth++;
$GLOBALS['comment_depth'] = $depth;
$GLOBALS['comment'] = $comment;
Expand Down

0 comments on commit 74c8444

Please sign in to comment.