Changeset 343 for trunk/Modules/log.php
- Timestamp:
- Jan 17, 2012, 1:00:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/log.php
r340 r343 7 7 function NewRecord($Module, $Operation, $Value = '') 8 8 { 9 $this->Database->insert('Log', array('Time' => 'NOW()', 'User' => $this->System->Mod ules['User']->User['Id'], 'Module' => $Module, 'Operation' => $Operation, 'Value' => $Value));9 $this->Database->insert('Log', array('Time' => 'NOW()', 'User' => $this->System->Models['User']->User['Id'], 'Module' => $Module, 'Operation' => $Operation, 'Value' => $Value)); 10 10 //echo($this->Database->LastQuery); 11 11 }
Note:
See TracChangeset
for help on using the changeset viewer.