Changeset 1704573
- Timestamp:
- 07/28/2017 04:11:29 PM (9 years ago)
- Location:
- f2-tumblr-widget
- Files:
-
- 4 edited
- 1 copied
-
tags/0.2.9 (copied) (copied from f2-tumblr-widget/trunk)
-
tags/0.2.9/README.txt (modified) (2 diffs)
-
tags/0.2.9/views/admin.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/views/admin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
f2-tumblr-widget/tags/0.2.9/README.txt
r1594911 r1704573 4 4 Tags: widget, tumblr, feed 5 5 Requires at least: 3.3 6 Tested up to: 4. 7.27 Stable tag: 0.2. 86 Tested up to: 4.8 7 Stable tag: 0.2.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 == Changelog == 70 70 71 = 0.2.9 = 72 * Increased the maximum number of posts displayed from 20 to 50, which is 73 the maximum that the Tumblr V1 API will provide. 74 71 75 = 0.2.8 = 72 76 * Will how honour the HTTP protocol of the source tumblr, if provided. This -
f2-tumblr-widget/tags/0.2.9/views/admin.php
r1104337 r1704573 116 116 name="<?php echo $this->get_field_name('posts'); ?>"> 117 117 <?php 118 for( $index = 1; $index <= 20; $index++ ) {118 for( $index = 1; $index <= 50; $index++ ) { 119 119 echo '<option value="' . $index . '" '; 120 120 selected( $local_params['posts'], $index ); -
f2-tumblr-widget/trunk/README.txt
r1594911 r1704573 4 4 Tags: widget, tumblr, feed 5 5 Requires at least: 3.3 6 Tested up to: 4. 7.27 Stable tag: 0.2. 86 Tested up to: 4.8 7 Stable tag: 0.2.9 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 69 69 == Changelog == 70 70 71 = 0.2.9 = 72 * Increased the maximum number of posts displayed from 20 to 50, which is 73 the maximum that the Tumblr V1 API will provide. 74 71 75 = 0.2.8 = 72 76 * Will how honour the HTTP protocol of the source tumblr, if provided. This -
f2-tumblr-widget/trunk/views/admin.php
r1104337 r1704573 116 116 name="<?php echo $this->get_field_name('posts'); ?>"> 117 117 <?php 118 for( $index = 1; $index <= 20; $index++ ) {118 for( $index = 1; $index <= 50; $index++ ) { 119 119 echo '<option value="' . $index . '" '; 120 120 selected( $local_params['posts'], $index );
Note: See TracChangeset
for help on using the changeset viewer.