Plugin Directory

Changeset 1704573


Ignore:
Timestamp:
07/28/2017 04:11:29 PM (9 years ago)
Author:
fsquared
Message:

Increased the maximum post count from 20 to 50

Location:
f2-tumblr-widget
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • f2-tumblr-widget/tags/0.2.9/README.txt

    r1594911 r1704573  
    44Tags: widget, tumblr, feed
    55Requires at least: 3.3
    6 Tested up to: 4.7.2
    7 Stable tag: 0.2.8
     6Tested up to: 4.8
     7Stable tag: 0.2.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969== Changelog ==
    7070
     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
    7175= 0.2.8 =
    7276* 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  
    116116            name="<?php echo $this->get_field_name('posts'); ?>">
    117117      <?php
    118       for( $index = 1; $index <= 20; $index++ ) {
     118      for( $index = 1; $index <= 50; $index++ ) {
    119119        echo '<option value="' . $index . '" ';
    120120        selected( $local_params['posts'], $index );
  • f2-tumblr-widget/trunk/README.txt

    r1594911 r1704573  
    44Tags: widget, tumblr, feed
    55Requires at least: 3.3
    6 Tested up to: 4.7.2
    7 Stable tag: 0.2.8
     6Tested up to: 4.8
     7Stable tag: 0.2.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6969== Changelog ==
    7070
     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
    7175= 0.2.8 =
    7276* Will how honour the HTTP protocol of the source tumblr, if provided. This
  • f2-tumblr-widget/trunk/views/admin.php

    r1104337 r1704573  
    116116            name="<?php echo $this->get_field_name('posts'); ?>">
    117117      <?php
    118       for( $index = 1; $index <= 20; $index++ ) {
     118      for( $index = 1; $index <= 50; $index++ ) {
    119119        echo '<option value="' . $index . '" ';
    120120        selected( $local_params['posts'], $index );
Note: See TracChangeset for help on using the changeset viewer.