Plugin Directory

Changeset 478783


Ignore:
Timestamp:
12/21/2011 06:59:36 PM (14 years ago)
Author:
elubow
Message:

Update code to 0.6.0

Location:
simplereach-slide/trunk
Files:
4 edited

Legend:

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

    r478158 r478783  
    55Plugin URI: https://github.com/simplereach/srslide_wordpress
    66Requires at least: 2.7
    7 Tested up to: 3.2.1
    8 Stable tag: 0.5.9
     7Tested up to: 3.3
     8Stable tag: 0.6.0
    99
    1010The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page.
     
    2121= Benefits =
    2222* Increased pageviews and time on site
    23 * Increased sharing on Twitter, Facebook and Google +1 via embedded social buttons
     23* Increased sharing on Twitter and Facebook via embedded social buttons
    2424* Access to full analytics in 'Reports' at SimpleReach.com
    2525* Customize The Slide's style and functionality
     
    5858
    5959== Changelog ==
     60
     61= 0.6.0 =
     62* Updated to work with Wordpress 3.3
     63* Regex fixes
    6064
    6165= 0.5.9 =
  • simplereach-slide/trunk/srslide.php

    r478158 r478783  
    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.5.9
     6    Version: 0.6.0
    77    Author: SimpleReach
    88    Author URI: https://www.simplereach.com
    99    */
    1010
    11 define('SRSLIDE_PLUGIN_VERSION', '0.5.9');
     11define('SRSLIDE_PLUGIN_VERSION', '0.6.0');
    1212define('SRSLIDE_PLUGIN_DIR', dirname(__FILE__));
    1313define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__));
  • simplereach-slide/trunk/srslide_admin.php

    r478158 r478783  
    336336                        <td colspan="3">
    337337                               Stylesheet:&nbsp;
    338                                   <input type="radio" name="srslide_css_option" value="1" <?php echo ($srslide_css_option != 2) ? 'Checked' : ''; ?>>&nbsp;Default&nbsp;&nbsp;
    339                   <input type="radio" name="srslide_css_option" value="2" <?php echo ($srslide_css_option == 2) ? 'Checked' : ''; ?>>&nbsp;Custom&nbsp;&nbsp;
    340                   &nbsp;&nbsp;URL:&nbsp;
     338                                  <input type="radio" name="srslide_css_option" value="1" <?php echo ($srslide_css_option != 2) ? 'Checked' : ''; ?>>&nbsp;Default&nbsp;&nbsp;&nbsp;&nbsp;
     339                  <input type="radio" name="srslide_css_option" value="2" <?php echo ($srslide_css_option == 2) ? 'Checked' : ''; ?>>&nbsp;Custom URL:&nbsp;
    341340                <input type="textbox" name="srslide_css_url" size="30" value="<?php echo ($srslide_css_option == 2) ? $srslide_css_url : ''; ?>">
    342341                        </td>
  • simplereach-slide/trunk/srslide_functions.php

    r478158 r478783  
    424424
    425425function srslide_validate_password($password) {
    426     return preg_match('/^[a-z0-9_-!;,]{6,99}$/i', $password);
     426    return preg_match('/^[a-z0-9\_\-\!\;\,]{6,99}$/i', $password);
    427427}
    428428?>
Note: See TracChangeset for help on using the changeset viewer.