Ignore:
Timestamp:
Aug 15, 2013, 11:17:26 PM (11 years ago)
Author:
chronos
Message:
  • Fixed: System variable as parameter to constructors of descendents of Module class.
  • Removed: End PHP mark "?>" from all files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/Base/Table.php

    r92 r93  
    9797      foreach($this->Definition['Items'] as $Index => $Item)
    9898      {
    99         $DbRow[$Index] = ExecuteTypeEvent($Item['Type'], 'OnView',
     99        $DbRow[$Index] = ExecuteTypeEvent($this->System, $Item['Type'], 'OnView',
    100100          array('Name' => $Index, 'Value' => $DbRow[$Index], 'Type' => $Item['Type']));
    101101        $Row[$Index] = $DbRow[$Index];
     
    105105  }
    106106}
    107 
    108 ?>
Note: See TracChangeset for help on using the changeset viewer.