Plugin Directory

Changeset 2850978


Ignore:
Timestamp:
01/19/2023 10:32:29 AM (3 years ago)
Author:
guestapp
Message:

fix review modification_date error

Location:
guestapp
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • guestapp/tags/1.4.25/CGuestApp.php

    r2834584 r2850978  
    9191                "user_name"             => $review->user_name,
    9292                "creation_date"         => $review->creation_date,
    93                 "modification_date"     => $review->modification_date,
     93                "modification_date"     => isset($review->modification_date) ? $review->modification_date : null,
    9494                "timestamp"             => $review->creation_date_timestamp,
    9595                "publication_date"      => $review->publication_date,
  • guestapp/tags/1.4.25/README.txt

    r2834594 r2850978  
    44Requires at least: 3.1
    55Tested up to: 5.2
    6 Stable tag: 1.4.24
     6Stable tag: 1.4.25
    77Requires PHP: 5.2
    88License: GPLv2
     
    3232
    3333== Changelog ==
     34
     35= 1.4.25 =
     36* Fix modification_date review error
    3437
    3538= 1.4.24 =
  • guestapp/tags/1.4.25/guestapp.php

    r2834594 r2850978  
    55Plugin URI: https://wordpress.org/plugins/guestapp/
    66Description: Guest Suite Plugin
    7 Version: 1.4.24
     7Version: 1.4.25
    88Author: Guest Suite
    99Author URI: https://www.guest-suite.com
  • guestapp/trunk/CGuestApp.php

    r2834584 r2850978  
    9191                "user_name"             => $review->user_name,
    9292                "creation_date"         => $review->creation_date,
    93                 "modification_date"     => $review->modification_date,
     93                "modification_date"     => isset($review->modification_date) ? $review->modification_date : null,
    9494                "timestamp"             => $review->creation_date_timestamp,
    9595                "publication_date"      => $review->publication_date,
  • guestapp/trunk/README.txt

    r2834594 r2850978  
    44Requires at least: 3.1
    55Tested up to: 5.2
    6 Stable tag: 1.4.24
     6Stable tag: 1.4.25
    77Requires PHP: 5.2
    88License: GPLv2
     
    3232
    3333== Changelog ==
     34
     35= 1.4.25 =
     36* Fix modification_date review error
    3437
    3538= 1.4.24 =
  • guestapp/trunk/guestapp.php

    r2834594 r2850978  
    55Plugin URI: https://wordpress.org/plugins/guestapp/
    66Description: Guest Suite Plugin
    7 Version: 1.4.24
     7Version: 1.4.25
    88Author: Guest Suite
    99Author URI: https://www.guest-suite.com
Note: See TracChangeset for help on using the changeset viewer.