Changeset 2215216
- Timestamp:
- 12/19/2019 03:58:04 PM (6 years ago)
- Location:
- copify/trunk
- Files:
-
- 4 edited
-
Lib/CopifyWordpress.php (modified) (2 diffs)
-
Test/Lib/CopifyWordpressTest.php (modified) (2 diffs)
-
copify.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
copify/trunk/Lib/CopifyWordpress.php
r2148516 r2215216 12 12 * Plugin version 13 13 */ 14 protected $version = '1.2. 5';14 protected $version = '1.2.6'; 15 15 16 16 /** … … 1094 1094 protected function CopifyCheckImageHost($url) { 1095 1095 $parts = parse_url($url); 1096 if (!preg_match("/flickr|copify /", $parts['host'])) {1096 if (!preg_match("/flickr|copify|pixabay/", $parts['host'])) { 1097 1097 throw new InvalidArgumentException('Bad image host'); 1098 1098 } -
copify/trunk/Test/Lib/CopifyWordpressTest.php
r2148516 r2215216 1 <?php1 1.2.6<?php 2 2 require_once(__DIR__ . '/../../basics.php'); 3 3 require_once(__DIR__ . '/../../Lib/CopifyApi.php'); … … 305 305 $this->CopifyWordpress = $this->getMock('CopifyWordpress', array('wordpress', 'outputJson', 'setheader')); 306 306 $version = $this->CopifyWordpress->getVersion(); 307 $this->assertEquals('1.2. 5', $version);307 $this->assertEquals('1.2.6', $version); 308 308 $mockVal = array( 309 309 'CopifyEmail' => 'foo@bar.com', -
copify/trunk/copify.php
r2148516 r2215216 4 4 Plugin URI: https://github.com/copify/copify-wordpress 5 5 Description: Automatically publish unique, relevant content every week from Copify's team of professional writers. 6 Version: 1.2. 56 Version: 1.2.6 7 7 Author: Rob McVey 8 8 Author URI: http://uk.copify.com/ -
copify/trunk/readme.txt
r2148516 r2215216 1 1 === Copify === 2 2 3 Version: 1.2. 53 Version: 1.2.6 4 4 Contributors: robmcvey 5 5 Tags: blog writers, automatic blogging, post writers, auto blogging, content, copywriting, copywriters, blogging, writers, writing, seo … … 39 39 40 40 == Changelog == 41 42 = 1.2.6 = 43 * Allows images from Pixabay 41 44 42 45 = 1.2.5 =
Note: See TracChangeset
for help on using the changeset viewer.