Show
Ignore:
Timestamp:
04/14/2008 09:54:25 AM (7 months ago)
Author:
Geert
Message:

Added unit_test to modules config.
Added $DISABLED property to Example_Test.
Added pagination.auto_hide option to config file.

Files:
1 modified

Legend:

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

    r1668 r2486  
    88 
    99/** 
    10  * Style name (matches template filename). 
     10 * Pagination style template (matches view filename). 
    1111 */ 
    1212$config['style'] = 'classic'; 
     
    1818 
    1919/** 
    20  * Number of items in a page of results. 
     20 * Number of items to display per page. 
    2121 */ 
    2222$config['items_per_page'] = 20; 
     23 
     24/** 
     25 * Automatically hide pagination completely for single pages. 
     26 */ 
     27$config['auto_hide'] = FALSE;