Plugin Directory

Changeset 718198


Ignore:
Timestamp:
05/25/2013 01:16:27 PM (13 years ago)
Author:
Parakoos
Message:

v2.12: Fixed an issue where certain PHP versions would print out a silly mistake a made which forced PHP to (rightly) assume that a variable was actually a string.

Location:
image-wall/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • image-wall/trunk/image-wall.php

    r702701 r718198  
    44    Plugin URI: http://www.themodernnomad.com/image-wall-plugin/#utm_campaign=Image_Wall&utm_source=wordpress&utm_medium=website&utm_content=plugin_link
    55    Description: Browse posts/pages by their images, displayed randomly on an infinitely scrollable page. The images link back to the posts where they are attached.
    6     Version: 2.11
     6    Version: 2.12
    77    Author: Gustav Andersson
    88    Author URI: http://www.themodernnomad.com/about/#utm_campaign=Image_Wall&utm_source=wordpress&utm_medium=website&utm_content=author_link
     
    331331        wp_register_script ( 'infinitescroll', plugins_url( 'jquery.infinitescroll.js'  , __FILE__ ), array(), '2.0b2.120519', true );
    332332        wp_enqueue_script  ('tmniwjs', plugins_url( 'image-wall.js'  , __FILE__ ), array('jquery', 'jquery-masonry', 'infinitescroll'), '1', true);
    333 
     333/*
    334334        $translation_array = array(
    335             msgTextLoading => __( "Congratulations, you've reached the end of the internet.", 'image-wall' ) ,
    336             msgTextNextLoading => __( 'Loading the next set of posts...', 'image-wall' ) ,
    337             msgTextloading => __("Loading ... ", "image-wall") ,
    338             msgTextMorePictures => __("Loading more pictures ... ", "image-wall") ,
    339             finishedMsg => __("You have reached the end of the internet!", "image-wall")
     335            'msgTextLoading' => __( "Congratulations, you've reached the end of the internet.", 'image-wall' ) ,
     336            'msgTextNextLoading' => __( 'Loading the next set of posts...', 'image-wall' ) ,
     337            'msgTextloading' => __("Loading ... ", "image-wall") ,
     338            'msgTextMorePictures' => __("Loading more pictures ... ", "image-wall") ,
     339            'finishedMsg' => __("You have reached the end of the internet!", "image-wall")
    340340 
    341341        );
    342342        wp_localize_script( 'tmniwjs', 'tmniwjsi18n', $translation_array );
    343 
     343*/
    344344       
    345345        wp_enqueue_style ('tmniwcss', plugins_url( 'image-wall.css' , __FILE__ ), array(), '1');
  • image-wall/trunk/readme.txt

    r702701 r718198  
    44Requires at least: 3.5
    55Tested up to: 3.5.1
    6 Stable tag: 2.11
     6Stable tag: 2.12
    77Donate link: http://www.themodernnomad.com/#utm_campaign=Image_Wall&utm_source=wordpress&utm_medium=website&utm_content=donation
    88License: GPLv2 or later
     
    9595* Added debug information to help me debug issues when I'm contacted for help.
    9696* Added a donation section in the Settings page.
     97
     98= 2.12 =
     99* Fixed an issue where certain PHP versions would print out a silly mistake a made which forced PHP to (rightly) assume that a variable was actually a string.
Note: See TracChangeset for help on using the changeset viewer.