Skip to content

Commit

Permalink
Merge pull request #51 from takayukister/dev/2.2
Browse files Browse the repository at this point in the history
Fix PHP syntax error
  • Loading branch information
takayukister authored Jul 31, 2020
2 parents fe8499a + d975845 commit baf7f97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/includes/class-contacts-list-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ protected function column_last_contacted( $item ) {
/* translators: date format, see https://www.php.net/date */
$datetime->format( __( 'Y/m/d', 'flamingo' ) ),
/* translators: time format, see https://www.php.net/date */
$datetime->format( __( 'g:i a', 'flamingo' ) ),
$datetime->format( __( 'g:i a', 'flamingo' ) )
);

return $t_time;
Expand Down
2 changes: 1 addition & 1 deletion admin/includes/class-inbound-messages-list-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ protected function column_date( $item ) {
/* translators: date format, see https://www.php.net/date */
$datetime->format( __( 'Y/m/d', 'flamingo' ) ),
/* translators: time format, see https://www.php.net/date */
$datetime->format( __( 'g:i a', 'flamingo' ) ),
$datetime->format( __( 'g:i a', 'flamingo' ) )
);

return $t_time;
Expand Down
2 changes: 1 addition & 1 deletion admin/includes/class-outbound-messages-list-table.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ protected function column_date( $item ) {
/* translators: date format, see https://www.php.net/date */
$datetime->format( __( 'Y/m/d', 'flamingo' ) ),
/* translators: time format, see https://www.php.net/date */
$datetime->format( __( 'g:i a', 'flamingo' ) ),
$datetime->format( __( 'g:i a', 'flamingo' ) )
);

return $t_time;
Expand Down

0 comments on commit baf7f97

Please sign in to comment.