Comment Pagination


Notice: Undefined variable: params in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Warning: array_merge(): Expected parameter 2 to be an array, null given in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 63

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 70

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 80

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 85

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 91

Notice: Trying to access array offset on value of type null in /home/rogerlov/public_html/blog/skins/print/index.main.php on line 93

Access comments individually. Originally I wanted the most recent first but I haven't hacked a way to reorder the numbers last to first so I couldn't link to a comment by place

[/skins/my_skin/_item.feedback.inc.php]

around line 175
added new variable $mrf (most frequent first) and set it to empty if there is no title or technically no comment.

Code

if( empty($disp_title) )
    {  // Still no title
      $disp_title[] = T_('No feedback yet');
      $mrl =  "";
    }
      else $mrl =  "<em> Most Recent Last</em>";
 
if( $params['disp_section_title'] )
    {  // Display title
      echo $params['before_section_title'].'    ';
      echo implode( ', ', $disp_title);
      echo $mrl;
      echo $params['after_section_title'];
    }