Plugin Directory

Changeset 510701


Ignore:
Timestamp:
02/26/2012 02:54:58 PM (14 years ago)
Author:
Beaver6813
Message:

2.0b2.120226

  • Improved preset security checking.

2.0b2.120131

  • Fixed non-alpha character encoding in selector settings.
  • Fixed issue in manual-trigger.js relating to instance typos.
  • Fixed issue in manual-trigger.min.js, jscompress thought it was cool to remove semi-colons...
  • Fixed loading image alignment issue.
Location:
infinite-scroll/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • infinite-scroll/trunk

  • infinite-scroll/trunk/includes/infinite-scroll.class.php

    r496953 r510701  
    66public function __construct()
    77    {
    8     self::$Version = '2.0b2.120111';
     8    self::$Version = '2.0b2.120226';
    99    self::$PresetRepo = 'http://plugins.svn.wordpress.org/infinite-scroll/branches/PresetDB/PresetDB.csv.php';
    1010    self::$PresetDB = WP_PLUGIN_DIR."/infinite-scroll/PresetDB.csv.php";
  • infinite-scroll/trunk/includes/options.class.php

    r496953 r510701  
    203203        else
    204204            $overwrite = 0;
    205         $addresult = infiniteScrollPresets::presetAdd($_POST['preset_themename'],$_POST['preset_content'],$_POST['preset_nav'],$_POST['preset_posts'],$_POST['preset_next'],$overwrite);   
     205        $addresult = infiniteScrollPresets::presetAdd(esc_attr($_POST['preset_themename']),esc_attr($_POST['preset_content']),esc_attr($_POST['preset_nav']),esc_attr($_POST['preset_posts']),esc_attr($_POST['preset_next']),$overwrite); 
    206206        if($addresult[0]=='OK')
    207207            {
  • infinite-scroll/trunk/readme.txt

    r496953 r510701  
    4949
    5050== Changelog ==
     51= 2.0b2.120226 =
     52* Improved preset security checking.
     53
     54= 2.0b2.120131 =
     55* Fixed non-alpha character encoding in selector settings.
     56* Fixed issue in manual-trigger.js relating to instance typos.
     57* Fixed issue in manual-trigger.min.js, jscompress thought it was cool to remove semi-colons...
     58* Fixed loading image alignment issue.
     59
    5160= 2.0b2.120111 =
    5261* Added infinite_scroll_load_override filter to manually force infinite-scroll to load on a page.
  • infinite-scroll/trunk/wp_infinite_scroll.php

    r496953 r510701  
    22/*
    33Plugin Name: Infinite Scroll
    4 Version: 2.0b2.120111
     4Version: 2.0b2.120226
    55Plugin URI: http://www.infinite-scroll.com
    66Description: Automatically loads the next page of posts into the bottom of the initial page.
Note: See TracChangeset for help on using the changeset viewer.