PavelH
Thanks Pavel. I have done some more digging and found class.thread_actions.php has a function called updateEntry, I have added my variables to there and it now updates (although I will have to change it as its only looking for a body change).
The problem I now have is, although I can edit it and update it, I can't seem to do that and see the previous value.
<td>
<input type="text" name="mins_spent" size="5"
value="<?php echo htmlspecialchars($this->entry->mins_spent);?>" />
(Minutes)
</td>
^^^ That code displays the currently stored value
<td>
<input type="text" name="hours_spent" size="5"
value="<?php if(isset($_POST['hours_spent'])) echo (hours_spent);?>" />
(Hours)
</td>
^^^ This updates the value correctly but doesn't display original value
How do I combine the codes to read the correct value from $this->entry->hours_spent then when value changed POST to hours_spent and display new value?
Fingers crossed this will be my last question, thanks again for all your help.