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/classic.php

    r1615 r1766  
    88 
    99<p class="pagination"> 
    10          
     10 
    1111        <?php if ($first_page): ?> 
    1212                <a href="<?php echo str_replace('{page}', 1, $url) ?>">&lsaquo;&nbsp;<?php echo Kohana::lang('pagination.first') ?></a> 
     
    1616                <a href="<?php echo str_replace('{page}', $previous_page, $url) ?>">&lt;</a> 
    1717        <?php endif ?> 
    18          
     18 
    1919 
    2020        <?php for ($i = 1; $i <= $total_pages; $i++): ?> 
    21                  
     21 
    2222                <?php if ($i == $current_page): ?> 
    2323                        <strong><?php echo $i ?></strong> 
     
    2525                        <a href="<?php echo str_replace('{page}', $i, $url) ?>"><?php echo $i ?></a> 
    2626                <?php endif ?> 
    27                  
     27 
    2828        <?php endfor ?> 
    2929