Appnitro Software Forums » MachForm

Date Updated Not Appearing on View Entry Page

(3 posts)

  1. darrenb
    Member

    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!
    Darren

    Posted 1 year ago #
  2. 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.

    Posted 1 year ago #
  3. darrenb
    Member

    Perfect, worked like a charm!

    Thanks,
    Darren

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.