Changeset 478783
- Timestamp:
- 12/21/2011 06:59:36 PM (14 years ago)
- Location:
- simplereach-slide/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (3 diffs)
-
srslide.php (modified) (1 diff)
-
srslide_admin.php (modified) (1 diff)
-
srslide_functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
simplereach-slide/trunk/readme.txt
r478158 r478783 5 5 Plugin URI: https://github.com/simplereach/srslide_wordpress 6 6 Requires at least: 2.7 7 Tested up to: 3. 2.18 Stable tag: 0. 5.97 Tested up to: 3.3 8 Stable tag: 0.6.0 9 9 10 10 The Slide recommends related posts from within your site on a widget that "slides" in at the bottom of the page. … … 21 21 = Benefits = 22 22 * Increased pageviews and time on site 23 * Increased sharing on Twitter , Facebook and Google +1via embedded social buttons23 * Increased sharing on Twitter and Facebook via embedded social buttons 24 24 * Access to full analytics in 'Reports' at SimpleReach.com 25 25 * Customize The Slide's style and functionality … … 58 58 59 59 == Changelog == 60 61 = 0.6.0 = 62 * Updated to work with Wordpress 3.3 63 * Regex fixes 60 64 61 65 = 0.5.9 = -
simplereach-slide/trunk/srslide.php
r478158 r478783 4 4 Plugin URI: https://www.simplereach.com 5 5 Description: After installation, you must click '<a href='options-general.php?page=SimpleReach-Slide'>Settings → SimpleReach Slide</a>' to turn on The Slide. 6 Version: 0. 5.96 Version: 0.6.0 7 7 Author: SimpleReach 8 8 Author URI: https://www.simplereach.com 9 9 */ 10 10 11 define('SRSLIDE_PLUGIN_VERSION', '0. 5.9');11 define('SRSLIDE_PLUGIN_VERSION', '0.6.0'); 12 12 define('SRSLIDE_PLUGIN_DIR', dirname(__FILE__)); 13 13 define('SRSLIDE_PLUGIN_URL', plugin_dir_url(__FILE__)); -
simplereach-slide/trunk/srslide_admin.php
r478158 r478783 336 336 <td colspan="3"> 337 337 Stylesheet: 338 <input type="radio" name="srslide_css_option" value="1" <?php echo ($srslide_css_option != 2) ? 'Checked' : ''; ?>> Default 339 <input type="radio" name="srslide_css_option" value="2" <?php echo ($srslide_css_option == 2) ? 'Checked' : ''; ?>> Custom 340 URL: 338 <input type="radio" name="srslide_css_option" value="1" <?php echo ($srslide_css_option != 2) ? 'Checked' : ''; ?>> Default 339 <input type="radio" name="srslide_css_option" value="2" <?php echo ($srslide_css_option == 2) ? 'Checked' : ''; ?>> Custom URL: 341 340 <input type="textbox" name="srslide_css_url" size="30" value="<?php echo ($srslide_css_option == 2) ? $srslide_css_url : ''; ?>"> 342 341 </td> -
simplereach-slide/trunk/srslide_functions.php
r478158 r478783 424 424 425 425 function 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); 427 427 } 428 428 ?>
Note: See TracChangeset
for help on using the changeset viewer.