Changeset 2273711
- Timestamp:
- 04/02/2020 08:58:00 AM (6 years ago)
- Location:
- kodeks-dashboard/trunk
- Files:
-
- 3 edited
-
functions.php (modified) (6 diffs)
-
kodeks-dashboard.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kodeks-dashboard/trunk/functions.php
r2268150 r2273711 710 710 */ 711 711 712 if ( ! function_exists( ' cf_search_join' ) ) {713 714 function cf_search_join( $join ) {712 if ( ! function_exists( 'kodeks_search_join' ) ) { 713 714 function kodeks_search_join( $join ) { 715 715 global $wpdb; 716 716 … … 721 721 return $join; 722 722 } 723 add_filter('posts_join', ' cf_search_join' );723 add_filter('posts_join', 'kodeks_search_join' ); 724 724 725 725 } … … 731 731 */ 732 732 733 if ( ! function_exists( ' cf_search_where' ) ) {734 function cf_search_where( $where ) {733 if ( ! function_exists( 'kodeks_search_where' ) ) { 734 function kodeks_search_where( $where ) { 735 735 global $pagenow, $wpdb; 736 736 … … 743 743 return $where; 744 744 } 745 add_filter( 'posts_where', ' cf_search_where' );745 add_filter( 'posts_where', 'kodeks_search_where' ); 746 746 } 747 747 … … 751 751 * http://codex.wordpress.org/Plugin_API/Filter_Reference/posts_distinct 752 752 */ 753 if ( ! function_exists( ' cf_search_distinct' ) ) {754 function cf_search_distinct( $where ) {753 if ( ! function_exists( 'kodeks_search_distinct' ) ) { 754 function kodeks_search_distinct( $where ) { 755 755 global $wpdb; 756 756 … … 761 761 return $where; 762 762 } 763 add_filter( 'posts_distinct', ' cf_search_distinct' );763 add_filter( 'posts_distinct', 'kodeks_search_distinct' ); 764 764 } 765 765 -
kodeks-dashboard/trunk/kodeks-dashboard.php
r2268150 r2273711 3 3 Plugin Name: Kodeks Dashboard 4 4 Description: This plugin customizes WordPress for Kodeks customers. 5 Version: 2.2 25 Version: 2.23 6 6 Author: Thomas Johannessen & Marius Kaase 7 7 Author URI: http://kodeks.no -
kodeks-dashboard/trunk/readme.txt
r2268150 r2273711 1 1 === Kodeks Dashboard === 2 Version: 2.2 22 Version: 2.23 3 3 Contributors: Kodeks AS 4 4 Tested up to: 5.3.2
Note: See TracChangeset
for help on using the changeset viewer.