Show
Ignore:
Timestamp:
01/21/2008 06:56:39 AM (12 months ago)
Author:
Geert
Message:

Cleaning up tons of whitespace:

  • Use tabs for indenting
  • Use spaces for aligning
  • Avoid whitespace at the end of a line
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/views/pagination/punbb.php

    r1615 r1766  
    88 
    99<p class="pagination"> 
    10          
     10 
    1111        <?php echo Kohana::lang('pagination.pages') ?>: 
    1212 
     
    1515                <?php if ($current_page != 4) echo '&hellip;' ?> 
    1616        <?php endif ?> 
    17          
     17 
    1818 
    1919        <?php for ($i = $current_page - 2, $stop = $current_page + 3; $i < $stop; ++$i): ?> 
    20                  
     20 
    2121                <?php if ($i < 1 OR $i > $total_pages) continue ?> 
    22                  
     22 
    2323                <?php if ($current_page == $i): ?> 
    2424                        <strong><?php echo $i ?></strong> 
     
    2626                        <a href="<?php echo str_replace('{page}', $i, $url) ?>"><?php echo $i ?></a> 
    2727                <?php endif ?> 
    28                  
     28 
    2929        <?php endfor ?> 
    30          
     30 
    3131 
    3232        <?php if ($current_page <= $total_pages - 3): ?>