f2915737 by Chris Boden

Invoice update accepting different types

1 parent fb8d26a5
...@@ -1072,7 +1072,8 @@ class Actions { ...@@ -1072,7 +1072,8 @@ class Actions {
1072 , 'institute' => isset($postarray['institution']) ? $postarray['institution'] : "" 1072 , 'institute' => isset($postarray['institution']) ? $postarray['institution'] : ""
1073 , 'hours' => $postarray['hours'] 1073 , 'hours' => $postarray['hours']
1074 , 'attended' => isset($postarray['attended']) ? "yes" : "no" 1074 , 'attended' => isset($postarray['attended']) ? "yes" : "no"
1075 , 'event_id' => "0" 1075 , 'post_type' => "event"
1076 , 'post_id' => '0'
1076 , 'recorded' => time() 1077 , 'recorded' => time()
1077 ); 1078 );
1078 1079
......