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/Setup.php

    r92 r94  
    402402  function CheckState()
    403403  {
    404     $this->Database->Connected() and $this->UpdateManager->IsInstalled() and
     404    return $this->Database->Connected() and $this->UpdateManager->IsInstalled() and
    405405      $this->UpdateManager->IsUpToDate();
    406406  }
Note: See TracChangeset for help on using the changeset viewer.