Ignore:
Timestamp:
May 3, 2014 11:09:03 PM (10 years ago)
Author:
anonymous
Message:

Convert tabs to spaces, and lineendings to LF in all files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/PageNumbers.inc.php

    r468 r479  
    9595    public function setPerPage($per_page, $default=25, $save_value=true)
    9696    {
    97         // (1) By provided argument, if valid.
     97        // (1) By provided argument, if valid.
    9898        // (2) By saved preference, if available.
    9999        // (3) Set to default value if provided and valid.
     
    160160    public function calculate()
    161161    {
    162         $app =& App::getInstance();
     162        $app =& App::getInstance();
    163163
    164164        if (!$this->set_per_page_initialized) {
     
    214214    public function getLimitSQL()
    215215    {
    216         $app =& App::getInstance();
    217         $db =& DB::getInstance();
     216        $app =& App::getInstance();
     217        $db =& DB::getInstance();
    218218
    219219        if (is_numeric($this->first_item) && is_numeric($this->_per_page)) {
     
    232232    public function printPerPageLinks($query_key='per_page')
    233233    {
    234         $app =& App::getInstance();
     234        $app =& App::getInstance();
    235235
    236236        $sp = '';
     
    262262    public function getPageNumURL($page_number, $carry_args=null)
    263263    {
    264         $app =& App::getInstance();
     264        $app =& App::getInstance();
    265265
    266266        return $app->oHREF($this->url_base . $page_number, $carry_args);
Note: See TracChangeset for help on using the changeset viewer.