Changeset 2158182
- Timestamp:
- 09/18/2019 01:55:11 AM (7 years ago)
- Location:
- wp-issues-crm
- Files:
-
- 4 edited
- 7 copied
-
tags/4.5.3.1 (copied) (copied from wp-issues-crm/trunk)
-
tags/4.5.3.1/css/dashboard.css (copied) (copied from wp-issues-crm/trunk/css/dashboard.css)
-
tags/4.5.3.1/js/ajax.js (copied) (copied from wp-issues-crm/trunk/js/ajax.js)
-
tags/4.5.3.1/js/dashboard.js (copied) (copied from wp-issues-crm/trunk/js/dashboard.js)
-
tags/4.5.3.1/php/db/class-wic-db-access-wp.php (modified) (2 diffs)
-
tags/4.5.3.1/php/entity/class-wic-entity-dashboard.php (copied) (copied from wp-issues-crm/trunk/php/entity/class-wic-entity-dashboard.php)
-
tags/4.5.3.1/readme.txt (copied) (copied from wp-issues-crm/trunk/readme.txt) (2 diffs)
-
tags/4.5.3.1/wp-issues-crm.php (copied) (copied from wp-issues-crm/trunk/wp-issues-crm.php) (1 diff)
-
trunk/php/db/class-wic-db-access-wp.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-issues-crm.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-issues-crm/tags/4.5.3.1/php/db/class-wic-db-access-wp.php
r2076584 r2158182 23 23 // default search parameters supplied -- not all apply in the WP context 24 24 $select_mode = 'id'; // not used 25 $sort_order = false; // not used25 $sort_order = false; // false is post_date desc; true is title asc 26 26 $compute_total = true; // not used 27 27 $retrieve_limit = -1; // USED … … 133 133 $query_args['meta_query'] = $meta_query_args; 134 134 } 135 135 // sort by title; 136 if ( $sort_order ) { 137 $query_args['orderby'] = array( 'title' => 'ASC' ); 138 } 139 136 140 $wp_query = new WP_Query($query_args); 137 141 $this->sql = ' ' . __(' ( serialized WP_Query->query output ) ', 'wp-issues-crm' ) . serialize ( $wp_query->query ); -
wp-issues-crm/tags/4.5.3.1/readme.txt
r2157599 r2158182 5 5 Requires at least: 5 6 6 Tested up to: 5.2.1 7 Stable tag: 4.5.3 7 Stable tag: 4.5.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 108 108 109 109 == Changelog == 110 = 4.5.3.1 = 111 * Sort issues by title in issue lists 110 112 = 4.5.3 = 111 113 * Save state of dashboard to facilitate iterative select from dashboard and return to dashboard -
wp-issues-crm/tags/4.5.3.1/wp-issues-crm.php
r2157599 r2158182 4 4 * Plugin URI: http://wp-issues-crm.com 5 5 * Description: Constituent Relationship Management for organizations that respond to constituents. Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories. 6 * Version: 4.5.3 6 * Version: 4.5.3.1 7 7 * Author: Will Brownsberger 8 8 * Author URI: http://willbrownsberger.com -
wp-issues-crm/trunk/php/db/class-wic-db-access-wp.php
r2076584 r2158182 23 23 // default search parameters supplied -- not all apply in the WP context 24 24 $select_mode = 'id'; // not used 25 $sort_order = false; // not used25 $sort_order = false; // false is post_date desc; true is title asc 26 26 $compute_total = true; // not used 27 27 $retrieve_limit = -1; // USED … … 133 133 $query_args['meta_query'] = $meta_query_args; 134 134 } 135 135 // sort by title; 136 if ( $sort_order ) { 137 $query_args['orderby'] = array( 'title' => 'ASC' ); 138 } 139 136 140 $wp_query = new WP_Query($query_args); 137 141 $this->sql = ' ' . __(' ( serialized WP_Query->query output ) ', 'wp-issues-crm' ) . serialize ( $wp_query->query ); -
wp-issues-crm/trunk/readme.txt
r2157599 r2158182 5 5 Requires at least: 5 6 6 Tested up to: 5.2.1 7 Stable tag: 4.5.3 7 Stable tag: 4.5.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 108 108 109 109 == Changelog == 110 = 4.5.3.1 = 111 * Sort issues by title in issue lists 110 112 = 4.5.3 = 111 113 * Save state of dashboard to facilitate iterative select from dashboard and return to dashboard -
wp-issues-crm/trunk/wp-issues-crm.php
r2157599 r2158182 4 4 * Plugin URI: http://wp-issues-crm.com 5 5 * Description: Constituent Relationship Management for organizations that respond to constituents. Organizes constituent contacts ( calls, etc. ) around Wordpress posts and categories. 6 * Version: 4.5.3 6 * Version: 4.5.3.1 7 7 * Author: Will Brownsberger 8 8 * Author URI: http://willbrownsberger.com
Note: See TracChangeset
for help on using the changeset viewer.