Changeset 1608063
- Timestamp:
- 03/05/2017 09:06:24 AM (9 years ago)
- Location:
- wplingo/trunk
- Files:
-
- 3 edited
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wplingo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wplingo/trunk/includes/functions.php
r1606096 r1608063 1799 1799 $ids = array(); 1800 1800 $posts_to_read = json_decode(get_transient("lingo_new_posts"), true); 1801 foreach($posts_to_read as $ptr_forum => $ptr_topics) { 1802 foreach($ptr_topics as $ptr_topic => $ptr_posts) { 1803 foreach($ptr_posts as $post_id) { 1804 //var_dump($post_id); 1805 $ids[] = $post_id; 1801 if($posts_to_read !== false) { 1802 foreach($posts_to_read as $ptr_forum => $ptr_topics) { 1803 foreach($ptr_topics as $ptr_topic => $ptr_posts) { 1804 foreach($ptr_posts as $post_id) { 1805 //var_dump($post_id); 1806 $ids[] = $post_id; 1807 } 1806 1808 } 1807 } 1809 } 1808 1810 } 1809 1811 -
wplingo/trunk/readme.txt
r1606096 r1608063 6 6 Requires at least: 4.6 7 7 Tested up to: 4.7 8 Stable tag: 1.1. 08 Stable tag: 1.1.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 60 60 == Changelog == 61 61 62 = 1.1.1 - 05-03-2017 63 * Bug fixes 64 62 65 = 1.1.0 - 28-02-2017 63 66 * Bug fixes -
wplingo/trunk/wplingo.php
r1606096 r1608063 7 7 * Author URI: http://wplingo.com 8 8 * Text Domain: lingo 9 * Version: 1.1. 09 * Version: 1.1.1 10 10 * 11 11 * WPLingo is free software: you can redistribute it and/or modify … … 25 25 * @category Core 26 26 * @author Mark Winiarski 27 * @version 1.1. 027 * @version 1.1.1 28 28 */ 29 29
Note: See TracChangeset
for help on using the changeset viewer.