Changeset 1935231
- Timestamp:
- 09/03/2018 11:21:07 PM (8 years ago)
- Location:
- cache-seo-speed/trunk
- Files:
-
- 5 edited
-
CssWallRioMain.php (modified) (1 diff)
-
package.json (modified) (1 diff)
-
readme-ptbr.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/CssWallRio_spider.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cache-seo-speed/trunk/CssWallRioMain.php
r1932100 r1935231 4 4 Plugin URI: http://wallrio.com/wordpress/plugins/cache-seo-speed/ 5 5 Description: Tool for optimization, caching and minification, accelerates the loading of pages with focus on performance analyzers. 6 Version: 0.0. 16 Version: 0.0.2 7 7 Author: Wallace Rio 8 8 Author URI: http://wallrio.com -
cache-seo-speed/trunk/package.json
r1932100 r1935231 1 1 { 2 2 "name": "cache-seo-speed", 3 "version":"0.0. 1",3 "version":"0.0.2", 4 4 "description": "Ferramenta para optimização, cache e minificação, acelera o carregamento de páginas com foco em analisadores de performance", 5 5 "homepage": "http://wallrio.com/wordpress/plugins/cache-seo-speed/", -
cache-seo-speed/trunk/readme-ptbr.txt
r1932112 r1935231 7 7 Requires at least: 4.3 8 8 Tested up to: 4.9 9 Stable tag: 0.0.2 9 10 10 11 Ferramenta para otimização, cache e minificação, acelera o carregamento de páginas com -
cache-seo-speed/trunk/readme.txt
r1932112 r1935231 7 7 Requires at least: 4.3 8 8 Tested up to: 4.9 9 Stable tag: 0.0.2 9 10 10 11 Tool for optimization, caching and minification, accelerates the loading of pages with … … 55 56 2. Main screen (Português) 56 57 58 == Changelog == 59 60 = 0.0.2 = 61 * fixed call failed for content cache. 62 63 57 64 == Frequently Asked Questions == 58 65 -
cache-seo-speed/trunk/src/CssWallRio_spider.php
r1932100 r1935231 27 27 28 28 $resultRequest = wp_remote_get($url); 29 $contentFile = $resultRequest['body']; 29 30 if(is_array($resultRequest)) 31 $contentFile = isset($resultRequest['body'])?$resultRequest['body']:''; 32 else if(is_object($resultRequest)) 33 $contentFile = isset($resultRequest->body)?$resultRequest->body:''; 30 34 31 35 … … 88 92 89 93 $resultRequest = wp_remote_get($url); 90 $contentFile = $resultRequest['body']; 94 if(is_array($resultRequest)) 95 $contentFile = isset($resultRequest['body'])?$resultRequest['body']:''; 96 else if(is_object($resultRequest)) 97 $contentFile = isset($resultRequest->body)?$resultRequest->body:''; 91 98 92 99 $type = 'js-link';
Note: See TracChangeset
for help on using the changeset viewer.