Changeset 1517528
- Timestamp:
- 10/18/2016 07:02:37 PM (9 years ago)
- Location:
- ifttt-bridge/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/class-ifttt-bridge-admin.php (modified) (1 diff)
-
ifttt-bridge.php (modified) (1 diff)
-
public/class-ifttt-bridge.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ifttt-bridge/trunk/README.txt
r1149609 r1517528 4 4 Tags: ifttt, ifthisthenthat 5 5 Requires at least: 3.9 6 Tested up to: 4. 2.16 Tested up to: 4.6.1 7 7 Stable tag: trunk 8 8 License: GPLv3 … … 95 95 = 1.0.2 = 96 96 * 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 110 110 foreach ( $log as $log_entry ) { 111 111 $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'] ), 113 113 'level' => $log_entry['level'], 114 114 'message' => $log_entry['message'], -
ifttt-bridge/trunk/ifttt-bridge.php
r1013514 r1517528 11 11 * Plugin URI: http://www.bjoerne.com 12 12 * 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. 213 * Version: 1.0.3 14 14 * Author: Björn Weinbrenner 15 15 * Author URI: http://www.bjoerne.com/ -
ifttt-bridge/trunk/public/class-ifttt-bridge.php
r1013514 r1517528 29 29 * @var string 30 30 */ 31 const VERSION = '1.0. 2';31 const VERSION = '1.0.3'; 32 32 33 33 /**
Note: See TracChangeset
for help on using the changeset viewer.