Plugin Directory

Changeset 516337


Ignore:
Timestamp:
03/08/2012 04:57:56 PM (14 years ago)
Author:
elubow
Message:

Update code to 0.6.2

Location:
simplereach-slide/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simplereach-slide/trunk/readme.txt

    r515885 r516337  
    66Requires at least: 2.7
    77Tested up to: 3.3
    8 Stable tag: 0.6.1
     8Stable tag: 0.6.2
    99
    10 The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page.
     10The Slide (currently in private beta) recommends related posts from within your site on a widget that "slides" in at the bottom of the page.
    1111
    1212== Description ==
    13 The Slide by SimpleReach is the best way to help readers discover more of your content.
     13The Slide by SimpleReach (currently in private beta) is the best way to help readers discover more of your content.
    1414
    1515The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page.  You've seen a similar content recommendation widget on sites like NYTimes.com, and now SimpleReach is allowing anybody to take advantage of this awesome plugin for free.
     
    5858
    5959== Changelog ==
     60
     61= 0.6.2 =
     62* Fixed edge case bug with saving CSS
    6063
    6164= 0.6.1 =
  • simplereach-slide/trunk/srslide.php

    r515885 r516337  
    44    Plugin URI: https://www.simplereach.com
    55    Description: After installation, you must click '<a href='options-general.php?page=SimpleReach-Slide'>Settings &rarr; SimpleReach Slide</a>' to turn on The Slide.
    6     Version: 0.6.1
     6    Version: 0.6.2
    77    Author: SimpleReach
    88    Author URI: https://www.simplereach.com
    99    */
    1010
    11 define('SRSLIDE_PLUGIN_VERSION', '0.6.1');
     11define('SRSLIDE_PLUGIN_VERSION', '0.6.2');
    1212define('SRSLIDE_PLUGIN_DIR', dirname(__FILE__));
    1313define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__));
  • simplereach-slide/trunk/srslide_admin.php

    r515885 r516337  
    116116        update_option('srslide_styles', create_style_hash($_POST));
    117117
    118         $style_error = update_slide_styles();
    119         if ($style_error != "OK") {
    120             array_push($errors, $style_error);
    121         }
     118        // $style_error = update_slide_styles();
     119        // if ($style_error != "OK") {
     120        //     array_push($errors, $style_error);
     121        // }
    122122
    123123        // Save if we are error free or print the errors
    124         if (count($errors) == 0) {
     124        // if (count($errors) == 0) {
     125        if (1) {
    125126          ?>
    126           <div class="updated"><p><strong><?php _e('Options saved. If you shifted The Slide position or adjusted the link color, it could take up to 15 minutes for your changes to take effect.', 'srslide'); ?></strong></p></div>
     127          <div class="updated"><p><strong><?php _e('Options saved.', 'srslide'); ?></strong></p></div>
    127128          <?php
    128129        } else {
     
    508509    </div>
    509510
    510     <?php 
     511    <?php
    511512            }
    512         } 
     513        }
    513514    ?>
    514515</div>
Note: See TracChangeset for help on using the changeset viewer.