Changeset 2761218
- Timestamp:
- 07/25/2022 02:18:41 PM (4 years ago)
- Location:
- wp-auto-links
- Files:
-
- 16 deleted
- 6 edited
- 1 copied
-
tags/1.4.0 (copied) (copied from wp-auto-links/trunk)
-
tags/1.4.0/.editorconfig (deleted)
-
tags/1.4.0/.gitattributes (deleted)
-
tags/1.4.0/.gitignore (deleted)
-
tags/1.4.0/.travis.yml (deleted)
-
tags/1.4.0/README.md (deleted)
-
tags/1.4.0/composer.json (modified) (2 diffs)
-
tags/1.4.0/composer.lock (deleted)
-
tags/1.4.0/phpcs.xml (deleted)
-
tags/1.4.0/readme.txt (modified) (1 diff)
-
tags/1.4.0/src/class-wp-auto-links-helper.php (modified) (1 diff)
-
tags/1.4.0/vendor (deleted)
-
trunk/.editorconfig (deleted)
-
trunk/.gitattributes (deleted)
-
trunk/.gitignore (deleted)
-
trunk/.travis.yml (deleted)
-
trunk/README.md (deleted)
-
trunk/composer.json (modified) (2 diffs)
-
trunk/composer.lock (deleted)
-
trunk/phpcs.xml (deleted)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/class-wp-auto-links-helper.php (modified) (1 diff)
-
trunk/vendor (deleted)
Legend:
- Unmodified
- Added
- Removed
-
wp-auto-links/tags/1.4.0/composer.json
r2040598 r2761218 13 13 "license": "MIT", 14 14 "require": { 15 "php": ">=7.2", 16 "composer/installers": "^1.0" 15 "php": ">=7.2" 17 16 }, 18 17 "require-dev": { … … 25 24 }, 26 25 "scripts": { 27 " test": [26 "lint": [ 28 27 "phpcs" 29 28 ] -
wp-auto-links/tags/1.4.0/readme.txt
r2100082 r2761218 4 4 Tags: auto links, seo, links, categories, pages, posts, tags 5 5 Requires at least: 5.0 6 Tested up to: 5.36 Tested up to: 6.0 7 7 Requires PHP: 7.2 8 8 Stable tag: trunk -
wp-auto-links/tags/1.4.0/src/class-wp-auto-links-helper.php
r2111277 r2761218 309 309 } 310 310 // Exclude too young posts 311 if ($this->get_option('min_post_age') > 0 && 312 (time() - get_post_time() < $this->get_option('min_post_age') * (24 * 60 * 60))) { 311 if ( 312 $this->get_option('min_post_age') > 0 && 313 (time() - get_post_time() < $this->get_option('min_post_age') * (24 * 60 * 60)) 314 ) { 313 315 return false; 314 316 } -
wp-auto-links/trunk/composer.json
r2040598 r2761218 13 13 "license": "MIT", 14 14 "require": { 15 "php": ">=7.2", 16 "composer/installers": "^1.0" 15 "php": ">=7.2" 17 16 }, 18 17 "require-dev": { … … 25 24 }, 26 25 "scripts": { 27 " test": [26 "lint": [ 28 27 "phpcs" 29 28 ] -
wp-auto-links/trunk/readme.txt
r2100082 r2761218 4 4 Tags: auto links, seo, links, categories, pages, posts, tags 5 5 Requires at least: 5.0 6 Tested up to: 5.36 Tested up to: 6.0 7 7 Requires PHP: 7.2 8 8 Stable tag: trunk -
wp-auto-links/trunk/src/class-wp-auto-links-helper.php
r2111277 r2761218 309 309 } 310 310 // Exclude too young posts 311 if ($this->get_option('min_post_age') > 0 && 312 (time() - get_post_time() < $this->get_option('min_post_age') * (24 * 60 * 60))) { 311 if ( 312 $this->get_option('min_post_age') > 0 && 313 (time() - get_post_time() < $this->get_option('min_post_age') * (24 * 60 * 60)) 314 ) { 313 315 return false; 314 316 }
Note: See TracChangeset
for help on using the changeset viewer.