Ignore:
Timestamp:
Jan 17, 2012, 10:37:59 AM (13 years ago)
Author:
chronos
Message:
  • Upraveno: Databáze nyní hlásí chyby dotazů přes výjimky.
  • Opraveno: Inicializace modulů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Project/Project.php

    r341 r342  
    1919class ProjectComment extends Model
    2020{
    21   function __construct()
     21  function __construct($Database)
    2222  {
    23     parent::__construct();
     23    parent::__construct($Database);
    2424    $this->Name = 'ProjectComment';
    2525    $this->AddPropertyOneToMany('Project', 'Project');
     
    4444  function Install()
    4545  {
     46    parent::Install();
    4647  }
    47  
    48   function Uninstall()
     48
     49  function UnInstall()
    4950  {
    50     $Query = 'DROP TABLE IF EXISTS `Project`;
    51        DROP TABLE IF EXISTS `ProjectComment`;';
    52  
    53   }
     51    parent::UnInstall();
     52  } 
    5453}
    5554
Note: See TracChangeset for help on using the changeset viewer.