Plugin Directory

Changeset 1608063


Ignore:
Timestamp:
03/05/2017 09:06:24 AM (9 years ago)
Author:
XinguPL
Message:
  • Bug Fixes
Location:
wplingo/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wplingo/trunk/includes/functions.php

    r1606096 r1608063  
    17991799    $ids = array();
    18001800    $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                }
    18061808            }
    1807         }
     1809        } 
    18081810    }
    18091811   
  • wplingo/trunk/readme.txt

    r1606096 r1608063  
    66Requires at least: 4.6
    77Tested up to: 4.7
    8 Stable tag: 1.1.0
     8Stable tag: 1.1.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6060== Changelog ==
    6161
     62= 1.1.1 - 05-03-2017
     63* Bug fixes
     64
    6265= 1.1.0 - 28-02-2017
    6366* Bug fixes
  • wplingo/trunk/wplingo.php

    r1606096 r1608063  
    77 * Author URI: http://wplingo.com
    88 * Text Domain: lingo
    9  * Version: 1.1.0
     9 * Version: 1.1.1
    1010 *
    1111 * WPLingo is free software: you can redistribute it and/or modify
     
    2525 * @category Core
    2626 * @author Mark Winiarski
    27  * @version 1.1.0
     27 * @version 1.1.1
    2828 */
    2929 
Note: See TracChangeset for help on using the changeset viewer.