Ignore:
Timestamp:
May 25, 2020, 9:54:02 PM (4 years ago)
Author:
chronos
Message:
  • Fixed: Missing return statement in Setup CheckState method.
  • Fixed: Global $System variable is not used anymore.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Packages/Common/Common.php

    r92 r94  
    4141}
    4242
    43 class Paging
     43class Paging extends Base
    4444{
    4545  var $TotalCount;
     
    4949  var $Page;
    5050
    51   function __construct()
     51  function __construct(Application &$System)
    5252  {
    53     global $System;
     53    parent::__construct($System);
    5454
    5555    $this->ItemPerPage = $System->Config['Web']['ItemsPerPage'];
Note: See TracChangeset for help on using the changeset viewer.