Changeset 1493373
- Timestamp:
- 09/09/2016 05:06:53 PM (10 years ago)
- Location:
- pl-platform/trunk
- Files:
-
- 18 edited
-
engine/lib/functions.php (modified) (3 diffs)
-
engine/lib/wrapping.php (modified) (1 diff)
-
engine/sections/menus/style.css (modified) (1 diff)
-
engine/ui/css/admin.css (modified) (1 diff)
-
engine/ui/css/components.css (modified) (1 diff)
-
engine/ui/css/workarea.css (modified) (1 diff)
-
engine/ui/js/admin.js (modified) (1 diff)
-
engine/ui/js/common.js (modified) (1 diff)
-
engine/ui/js/editing.js (modified) (1 diff)
-
engine/ui/js/site.js (modified) (1 diff)
-
engine/ui/js/utils.js (modified) (1 diff)
-
engine/ui/plugins/codemirror/pl.codemirror.js (modified) (1 diff)
-
engine/ui/plugins/squire/squire.js (modified) (1 diff)
-
engine/ui/plugins/wizard/wizard.js (modified) (1 diff)
-
engine/ui/plugins/wp/colorpicker-wp.js (modified) (1 diff)
-
lib/oauth.php (modified) (1 diff)
-
pl-platform.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pl-platform/trunk/engine/lib/functions.php
r1475052 r1493373 2801 2801 $parts = explode( '.', $domain ); 2802 2802 $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' ); 2804 2804 $local = false; 2805 2805 … … 2978 2978 * Pagination Function 2979 2979 * 2980 * @package PageLines DMS2980 * @package PageLines Platform 5 2981 2981 * @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() 2983 2986 * 2984 2987 */ … … 2991 2994 ?> 2992 2995 <ul class="pl-pager page-nav-default fix"> 2993 <li class="previous previous-entries"> 2994 <?php next_posts_link( __( '← Previous Entries','pl-platform' ) ) ?> 2995 </li> 2996 <li class="next next-entries"> 2997 <?php previous_posts_link( __( 'Next Entries →','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( __( '← Previous Entries','pl-platform' ) ) ); 3003 printf( '<li class="next next-entries">%s</li>', get_next_posts_link( __( 'Next Entries →','pl-platform' ) ) ); 3004 } 3005 ?> 2999 3006 </ul> 3000 3007 <?php -
pl-platform/trunk/engine/lib/wrapping.php
r1454989 r1493373 138 138 global $wp_filter; 139 139 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 } 141 153 142 154 remove_all_actions( 'wp_footer' ); -
pl-platform/trunk/engine/sections/menus/style.css
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:151 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/admin.css
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:151 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/components.css
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:151 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/css/workarea.css
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:151 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/admin.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/common.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/editing.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/site.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/js/utils.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * 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.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/squire/squire.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/engine/ui/plugins/wizard/wizard.js
r1489073 r1493373 1 /* PageLines Platform - 5.0.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * 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.15 32 * Built: Friday, September 2nd, 2016, 20:161 /* PageLines Platform - 5.0.154 2 * Built: Friday, September 9th, 2016, 18:05 3 3 * http://www.pagelines.com 4 4 * Copyright (c) 2016 PageLines; Licensed GPL-3.0 */ -
pl-platform/trunk/lib/oauth.php
r1465457 r1493373 312 312 } 313 313 /** 314 * Set timeout to 15s314 * Set timeout to 60s 315 315 */ 316 316 $defaults = array( 317 'timeout' => 15,317 'timeout' => 60, 318 318 ); 319 319 -
pl-platform/trunk/pl-platform.php
r1489073 r1493373 4 4 Description: An insanely-fast real time design platform for WordPress. 5 5 6 Version: 5.0.15 36 Version: 5.0.154 7 7 8 8 Author: PageLines -
pl-platform/trunk/readme.txt
r1489073 r1493373 3 3 Contributors: pagelines 4 4 Tested up to: 4.6 5 Stable tag: 5.0.15 35 Stable tag: 5.0.154 6 6 License: GPLv3 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 79 79 80 80 == 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. 81 88 82 89 = 5.0.153 =
Note: See TracChangeset
for help on using the changeset viewer.