Plugin Directory

Changeset 1493373


Ignore:
Timestamp:
09/09/2016 05:06:53 PM (10 years ago)
Author:
pagelines
Message:

Committing 5.0.154 to trunk

Location:
pl-platform/trunk
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • pl-platform/trunk/engine/lib/functions.php

    r1475052 r1493373  
    28012801    $parts     = explode( '.', $domain );
    28022802    $ip_loc    = (bool) filter_var( $domain, FILTER_VALIDATE_IP ); // will return true is domain is an ip.
    2803     $staging   = array( 'staging', 'dev', 'xip', 'myftpupload', 'localhost' );
     2803    $staging   = array( 'staging', 'dev', 'xip', 'myftpupload', 'localhost', 'flywheelsites' );
    28042804    $local     = false;
    28052805
     
    29782978 *  Pagination Function
    29792979 *
    2980  *  @package PageLines DMS
     2980 *  @package PageLines Platform 5
    29812981 *  @subpackage Functions Library
    2982  *  @since 2.0.b12 moved
     2982 *  @since 5
     2983 *
     2984 *  Single posts need to use next_post_link()
     2985 *  Archives can use next_posts_link()
    29832986 *
    29842987 */
     
    29912994      ?>
    29922995        <ul class="pl-pager page-nav-default fix">
    2993             <li class="previous previous-entries">
    2994                 <?php next_posts_link( __( '&larr; Previous Entries','pl-platform' ) ) ?>
    2995             </li>
    2996             <li class="next next-entries">
    2997             <?php previous_posts_link( __( 'Next Entries &rarr;','pl-platform' ) ) ?>
    2998             </li>
     2996          <?php
     2997                if( is_single() && ! is_page() ) {
     2998                  printf( '<li class="previous previous-entries">%s</li>', get_previous_post_link( '%link' ) );
     2999                  printf( '<li class="next next-entries">%s</li>', get_next_post_link( '%link' ) );
     3000                }
     3001                else {
     3002                  printf( '<li class="previous previous-entries">%s</li>', get_previous_posts_link( __( '&larr; Previous Entries','pl-platform' ) ) );
     3003                  printf( '<li class="next next-entries">%s</li>', get_next_posts_link( __( 'Next Entries &rarr;','pl-platform' ) ) );
     3004                }
     3005                ?>
    29993006        </ul>
    30003007      <?php
  • pl-platform/trunk/engine/lib/wrapping.php

    r1454989 r1493373  
    138138    global $wp_filter;
    139139
    140     $wp_filter['pl_footer_workaround'] = $wp_filter['wp_footer'];
     140    /**
     141     * WordPress 4.7 introduces new class WP_Hook to handle filters and actions.
     142     */
     143    if( class_exists( 'WP_Hook' ) ) {
     144      $wp_filter['pl_footer_workaround'] = new WP_Hook;
     145      $wp_filter['pl_footer_workaround']->callbacks = $wp_filter['wp_footer']->callbacks;
     146
     147    /**
     148     * Pre WordPress 4.7
     149     */
     150    } else {
     151      $wp_filter['pl_footer_workaround'] = $wp_filter['wp_footer'];
     152    }
    141153
    142154    remove_all_actions( 'wp_footer' );
  • pl-platform/trunk/engine/sections/menus/style.css

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:15
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/css/admin.css

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:15
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/css/components.css

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:15
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/css/workarea.css

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:15
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/js/admin.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/js/common.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/js/editing.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/js/site.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/js/utils.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/plugins/codemirror/pl.codemirror.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/plugins/squire/squire.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/plugins/wizard/wizard.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/engine/ui/plugins/wp/colorpicker-wp.js

    r1489073 r1493373  
    1 /* PageLines Platform - 5.0.153
    2 * Built: Friday, September 2nd, 2016, 20:16
     1/* PageLines Platform - 5.0.154
     2* Built: Friday, September 9th, 2016, 18:05
    33* http://www.pagelines.com
    44* Copyright (c) 2016 PageLines; Licensed GPL-3.0 */
  • pl-platform/trunk/lib/oauth.php

    r1465457 r1493373  
    312312    }
    313313    /**
    314      * Set timeout to 15s
     314     * Set timeout to 60s
    315315     */
    316316    $defaults = array(
    317       'timeout'     => 15,
     317      'timeout'     => 60,
    318318    );
    319319
  • pl-platform/trunk/pl-platform.php

    r1489073 r1493373  
    44Description:  An insanely-fast real time design platform for WordPress.
    55
    6 Version:      5.0.153
     6Version:      5.0.154
    77
    88Author:       PageLines
  • pl-platform/trunk/readme.txt

    r1489073 r1493373  
    33Contributors: pagelines
    44Tested up to: 4.6
    5 Stable tag: 5.0.153
     5Stable tag: 5.0.154
    66License: GPLv3 or later
    77License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7979
    8080== Changelog ==
     81
     82= 5.0.154 =
     83
     84* Fix pagination on single post pages.
     85* Add support for WP 4.7 WP_Hook()
     86* Increase timeout for store connections.
     87* flywheelsites domain added to whitelist.
    8188
    8289= 5.0.153 =
Note: See TracChangeset for help on using the changeset viewer.