Changeset 510701
- Timestamp:
- 02/26/2012 02:54:58 PM (14 years ago)
- Location:
- infinite-scroll/trunk
- Files:
-
- 5 edited
-
. (modified) (1 prop)
-
includes/infinite-scroll.class.php (modified) (1 diff)
-
includes/options.class.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp_infinite_scroll.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
infinite-scroll/trunk
-
Property
svn:mergeinfo
set to
/infinite-scroll/branches/Beta merged eligible
-
Property
svn:mergeinfo
set to
-
infinite-scroll/trunk/includes/infinite-scroll.class.php
r496953 r510701 6 6 public function __construct() 7 7 { 8 self::$Version = '2.0b2.120 111';8 self::$Version = '2.0b2.120226'; 9 9 self::$PresetRepo = 'http://plugins.svn.wordpress.org/infinite-scroll/branches/PresetDB/PresetDB.csv.php'; 10 10 self::$PresetDB = WP_PLUGIN_DIR."/infinite-scroll/PresetDB.csv.php"; -
infinite-scroll/trunk/includes/options.class.php
r496953 r510701 203 203 else 204 204 $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); 206 206 if($addresult[0]=='OK') 207 207 { -
infinite-scroll/trunk/readme.txt
r496953 r510701 49 49 50 50 == 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 51 60 = 2.0b2.120111 = 52 61 * 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 2 2 /* 3 3 Plugin Name: Infinite Scroll 4 Version: 2.0b2.120 1114 Version: 2.0b2.120226 5 5 Plugin URI: http://www.infinite-scroll.com 6 6 Description: Automatically loads the next page of posts into the bottom of the initial page.
Note: See TracChangeset
for help on using the changeset viewer.