Changeset 2085946
- Timestamp:
- 05/11/2019 03:30:32 PM (7 years ago)
- Location:
- tagbee-automatic-post-tagging
- Files:
-
- 9 added
- 2 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/index.php (added)
-
tags/1.0.9/lib (added)
-
tags/1.0.9/lib/tagbee-auto-proposals-request.php (added)
-
tags/1.0.9/lib/tagbee-client.php (added)
-
tags/1.0.9/lib/tagbee-request-interface.php (added)
-
tags/1.0.9/lib/tagbee-update-tags-request.php (added)
-
tags/1.0.9/readme.txt (added)
-
tags/1.0.9/tagbee-post-tagger.php (added)
-
trunk/lib/tagbee-auto-proposals-request.php (modified) (1 diff)
-
trunk/tagbee-post-tagger.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tagbee-automatic-post-tagging/trunk/lib/tagbee-auto-proposals-request.php
r2085830 r2085946 89 89 private function validate() 90 90 { 91 if (!trim($this->contentTitle) &&trim($this->contentBody)) {91 if (!trim($this->contentTitle) || !trim($this->contentBody)) { 92 92 throw new Exception('Empty Title or Body'); 93 93 } -
tagbee-automatic-post-tagging/trunk/tagbee-post-tagger.php
r2085830 r2085946 4 4 Plugin URI: https://developer.wordpress.org/plugins/the-basics/ 5 5 Description: Add Tags to posts 6 Version: 1.0. 86 Version: 1.0.9 7 7 Author: TagΒee Team 8 8 Author URI: https://tagbee.co … … 28 28 */ 29 29 defined('ABSPATH') or die('Wordpress Plugin'); 30 define('TAGBEE_VERSION', "1.0. 8");30 define('TAGBEE_VERSION', "1.0.9"); 31 31 define("TAGBEE_NAMESPACE", "tagbee"); 32 32 define("TAGBEE_INNER_PROPOSAL_ENDPOINT", "proposals");
Note: See TracChangeset
for help on using the changeset viewer.