This forum is no longer open and is for reading/searching only.
Please use our new MachForm Community Forum instead.
MachForm Community Forums » MachForm 2
Date Updated Not Appearing on View Entry Page
Started 15 years ago by darrenb | 3 posts |
-
Hi,
The date updated field on the View Entry page (view_entry.php) is blank. Date Created and IP Address, however, are populated.
The Date Updated appears on the spreadsheet when exporting from the Manage Entries screen (manage_entries.php). Also, the Date Updated correctly appears if you view its column on the Manage Entries screen.
Any ideas?
Thanks!
DarrenPosted 15 years ago # -
Ah.. yes, there is some typo error within view_entry.php file. Sorry!
To fix it, edit your view_entry.php, search around line 56:
$date_created = $row['date_created']; if(!empty($row['date_update'])){
change it to become:
$date_created = $row['date_created']; if(!empty($row['date_updated'])){
that should fix it.
MachForm Founder
Posted 15 years ago # -
Perfect, worked like a charm!
Thanks,
DarrenPosted 15 years ago #
Reply
You must log in to post.