Plugin Directory

Changeset 1517528


Ignore:
Timestamp:
10/18/2016 07:02:37 PM (9 years ago)
Author:
bjoerne
Message:

Prepare new version: display correct date/time in log

Location:
ifttt-bridge/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ifttt-bridge/trunk/README.txt

    r1149609 r1517528  
    44Tags: ifttt, ifthisthenthat
    55Requires at least: 3.9
    6 Tested up to: 4.2.1
     6Tested up to: 4.6.1
    77Stable tag: trunk
    88License: GPLv3
     
    9595= 1.0.2 =
    9696* Bugfix: htmlspecialchars is not applied to raw request anymore but to all displayed log entries
     97
     98= 1.0.3 =
     99* Bugfix: Display date and time of log entry instead of current date
  • ifttt-bridge/trunk/admin/class-ifttt-bridge-admin.php

    r966423 r1517528  
    110110        foreach ( $log as $log_entry ) {
    111111            $this->log_entries[] = array(
    112                 'time' => date_i18n( _x( 'Y/m/d h:i:s A', 'Date time pattern', $this->plugin_slug ) ),
     112                'time' => date_i18n( _x( 'Y/m/d h:i:s A', 'Date time pattern', $this->plugin_slug ), $log_entry['time'] ),
    113113                'level' => $log_entry['level'],
    114114                'message' => $log_entry['message'],
  • ifttt-bridge/trunk/ifttt-bridge.php

    r1013514 r1517528  
    1111 * Plugin URI:        http://www.bjoerne.com
    1212 * Description:       IFTTT Bridge for WordPress is a plugin that allows you to display IFTTT-processed data on your WordPress site in any way you like.
    13  * Version:           1.0.2
     13 * Version:           1.0.3
    1414 * Author:            Björn Weinbrenner
    1515 * Author URI:        http://www.bjoerne.com/
  • ifttt-bridge/trunk/public/class-ifttt-bridge.php

    r1013514 r1517528  
    2929     * @var     string
    3030     */
    31     const VERSION = '1.0.2';
     31    const VERSION = '1.0.3';
    3232
    3333    /**
Note: See TracChangeset for help on using the changeset viewer.