| 52 | | return insert_data("insert into {$CONFIG->dbprefix}river " . |
|---|
| 53 | | " set type = '{$type}', " . |
|---|
| 54 | | " subtype = '{$subtype}', " . |
|---|
| 55 | | " action_type = '{$action_type}', " . |
|---|
| 56 | | " access_id = {$access_id}, " . |
|---|
| 57 | | " view = '{$view}', " . |
|---|
| 58 | | " subject_guid = {$subject_guid}, " . |
|---|
| 59 | | " object_guid = {$object_guid}, " . |
|---|
| 60 | | " posted = {$posted} "); |
|---|
| 61 | | |
|---|
| | 52 | return insert_data("insert into {$CONFIG->dbprefix}river " . |
|---|
| | 53 | "(type, subtype, action_type, access_id, view, subject_guid, object_guid, posted) VALUES " . |
|---|
| | 54 | "('{$type}', '{$subtype}', '{$action_type}', '{$access_id}', '{$view}', '{$subject_guid}', '{$object_guid}', '{$posted}')"); |
|---|