Changeset 4013
- Timestamp:
- 05/16/07 01:31:46 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfDataGridPlugin/lib/BasesfDataGrid.class.php
r4009 r4013 886 886 { 887 887 $this->rowsPerPage = $rowsPerPage; 888 $this->getPager()->setMaxPerPage($rowsPerPage); 888 889 if( $pager = $this->getPager() ) 890 { 891 $pager->setMaxPerPage($rowsPerPage); 892 } 889 893 } 890 894