Changeset 858 for trunk/Packages/Common


Ignore:
Timestamp:
May 8, 2019, 7:59:39 PM (6 years ago)
Author:
chronos
Message:
  • Fixed: Missing intialization of some variables.
  • Fixed: Missing appmodule dependencies.
Location:
trunk/Packages/Common
Files:
2 edited

Legend:

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

    r817 r858  
    6969    $this->License = '';
    7070    $this->Version = '';
     71    $this->Creator = '';
    7172    $this->Description = '';
    7273    $this->Dependencies = array();
    7374    $this->Type = ModuleType::Normal;
    7475  }
    75  
     76
    7677  function Install()
    7778  {
  • trunk/Packages/Common/Database.php

    r852 r858  
    109109      $this->insert_id = $this->PDO->lastInsertId();
    110110    } else
    111     {
     111    {     
    112112      $this->Error = $this->PDO->errorInfo();
    113113      $this->Error = $this->Error[2];
Note: See TracChangeset for help on using the changeset viewer.