Show
Ignore:
Timestamp:
10/04/2007 01:57:26 PM (14 months ago)
Author:
Shadowhand
Message:

Overhauled User_Agent almost completely.

Spit shine on the rest of it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/application/config/pagination.php

    r644 r647  
    11<?php defined('SYSPATH') or die('No direct access allowed.'); 
    2  
    3 $config['style'] = 'classic'; 
    4  
    5 $config['items_per_page'] = 20; 
     2/** 
     3 * Pagination Configuration 
     4 * ----------------------------------------------------------------------------- 
     5 * 
     6 * User Guide: http://kohanaphp.com/user_guide/en/libraries/pagination.html 
     7 * 
     8 * @param string  style          Style name 
     9 * @param string  items_per_page Number of items in a page of results 
     10 * 
     11 */ 
     12$config = array 
     13( 
     14        'style'          => 'classic', 
     15        'items_per_page' => 20 
     16);