Ignore:
Timestamp:
2006/12/13 10:23:09 (19 years ago)
Author:
uehara
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/test-xoops.ec-cube.net/html/class/pagenav.php

    r820 r822  
    9292            while ( $counter <= $total_pages ) { 
    9393                if ( $counter == $current_page ) { 
     94                    if($counter != 1) $ret .= "¡Ã"; 
    9495                    $ret .= " <span class=\"orange\"><strong>$counter</strong></span> "; 
    9596                } elseif ( ($counter > $current_page-$offset && $counter < $current_page + $offset ) || $counter == 1 || $counter == $total_pages ) { 
     
    9798                        $ret .= '... '; 
    9899                    } 
    99                     $ret .= '<a href="'.$this->url.(($counter - 1) * $this->perpage).'">|'.$counter.'</a> '; 
     100                    if($counter != 1) $ret .= "¡Ã"; 
     101                    $ret .= '<a href="'.$this->url.(($counter - 1) * $this->perpage).'">'.$counter.'</a> '; 
    100102                    if ( $counter == 1 && $current_page > 1 + $offset ) { 
    101103                        $ret .= '... '; 
Note: See TracChangeset for help on using the changeset viewer.