Changeset 2129140
- Timestamp:
- 07/26/2019 02:05:06 PM (7 years ago)
- Location:
- canvasflow/trunk
- Files:
-
- 4 edited
-
README.md (modified) (2 diffs)
-
canvasflow-plugin.php (modified) (3 diffs)
-
includes/canvasflow-db.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
canvasflow/trunk/README.md
r2126721 r2129140 78 78 79 79 #### Changelog 80 ##### 1.5.4 81 * Replace prefix + users with `wpdb->users` 82 80 83 ##### 1.5.3 81 84 * Added support for new API syntax … … 185 188 186 189 #### Upgrade Notice 190 ##### 1.5.4 191 * Replace prefix + users with `wpdb->users` 192 187 193 ##### 1.5.3 188 194 * Added support for new API syntax -
canvasflow/trunk/canvasflow-plugin.php
r2126725 r2129140 3 3 Plugin Name: Canvasflow for WordPress 4 4 Description: This out-of-the-box connector provides a quick and simple way to push your blog content directly to an existing Canvasflow publication. 5 Version: 1.5. 35 Version: 1.5.4 6 6 Developer: Canvasflow 7 7 Developer URI: https://canvasflow.io … … 38 38 class WP_Canvasflow{ 39 39 private $wpdb; 40 public static $version = "1.5. 3";40 public static $version = "1.5.4"; 41 41 private $canvasflow_db; 42 42 private $canvasflow_tables_names; … … 44 44 function __construct() { 45 45 $this->wpdb = $GLOBALS['wpdb']; 46 $this->version = "1.5.3";47 46 $this->canvasflow_db = new Canvasflow_DB(); 48 47 -
canvasflow/trunk/includes/canvasflow-db.php
r2025365 r2129140 18 18 $this->cf_credentials_table_name = $this->wpdb->prefix."canvasflow_credentials"; 19 19 $this->cf_posts_table_name = $this->wpdb->prefix."canvasflow_posts"; 20 $this->wp_users_table_name = $this->wpdb->prefix."users"; 21 $this->wp_posts_table_name = $this->wpdb->prefix."posts"; 20 21 $this->wp_users_table_name = $this->wpdb->users; 22 $this->wp_posts_table_name = $this->wpdb->posts; 22 23 } 23 24 -
canvasflow/trunk/readme.txt
r2126721 r2129140 74 74 75 75 == Changelog == 76 = 1.5.4 = 77 * Replace prefix + users with `wpdb->users` 78 76 79 = 1.5.3 = 77 80 * Added support for new API syntax … … 185 188 186 189 == Upgrade Notice == 190 = 1.5.4 = 191 * Replace prefix + users with `wpdb->users` 192 187 193 = 1.5.3 = 188 194 * Added support for new API syntax
Note: See TracChangeset
for help on using the changeset viewer.