Changeset 3041581
- Timestamp:
- 02/26/2024 11:20:31 PM (2 years ago)
- Location:
- ngg-smart-image-search/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (1 diff)
-
admin/class-ngg-smart-image-search-admin.php (modified) (6 diffs)
-
ngg-smart-image-search.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ngg-smart-image-search/trunk/README.txt
r3040703 r3041581 142 142 == Changelog == 143 143 144 = 3.2 = 145 This is a recommended maintenance update, uploaded 2024-02-08. 144 145 = 3.2.1 = 146 This is a recommended error fix, uploaded 2024-02-27. 147 148 *Fixed: widget parameters were not passed correctly to the backend, were instead replaced by defaults 149 150 = 3.2.0 = 151 This is a recommended maintenance update, uploaded 2024-02-24. 146 152 147 153 *Enhanced: advanced thumbnail and linked image display now use current fancybox lightbox (no jquery-dependency) independent of NextGEN Gallery -
ngg-smart-image-search/trunk/admin/class-ngg-smart-image-search-admin.php
r3040703 r3041581 760 760 // $hr_SIS_uebergabe = serialize( $instance ); 761 761 $hr_SIS_uebergabe = json_encode( $instance ); 762 $hr_SIS_uebergabe = str_replace( '"', ' <:>', $hr_SIS_uebergabe) ;762 $hr_SIS_uebergabe = str_replace( '"', '_#_', $hr_SIS_uebergabe) ; 763 763 764 764 // retrieve current slug for search page … … 1097 1097 /** 1098 1098 * Make sure the function does not exist before defining it 1099 */1099 / 1100 1100 if( ! function_exists( 'hr_remove_class_filter' ) ){ 1101 1101 /** … … 1116 1116 * 1117 1117 * @return bool Whether the function is removed. 1118 * /1118 * 1119 1119 function hr_remove_class_filter( $tag, $class_name = '', $method_name = '', $priority = 10 ) { 1120 1120 global $wp_filter; … … 1130 1130 * 1131 1131 * @see https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/ 1132 */1132 / 1133 1133 if ( is_object( $wp_filter[ $tag ] ) && isset( $wp_filter[ $tag ]->callbacks ) ) { 1134 1134 // Create $fob object from filter tag, to use below … … 1182 1182 } 1183 1183 } 1184 /**1184 /** 1185 1185 * Make sure the function does not exist before defining it 1186 * 1186 *** 1187 1187 if( ! function_exists( 'hr_remove_class_action9') ){ 1188 1188 /** … … 1204 1204 * 1205 1205 function hr_remove_class_action9( $tag = 'in_admin_header', $class_name = 'M_Marketing', $method_name = 'admin_header', $priority = 10 ) { 1206 hr_remove_class_filter( $tag, $class_name, $method_name, $priority=10 );1206 remove_filter( $tag, $class_name, $method_name, $priority=10 ); 1207 1207 } 1208 1208 } 1209 1209 if( ! function_exists( 'hr_remove_class_action10') ){ 1210 1210 function hr_remove_class_action10( $tag = 'in_admin_header', $class_name = 'M_Marketing', $method_name = 'admin_header', $priority = 10 ) { 1211 hr_remove_class_filter( $tag, $class_name, $method_name, $priority=10 );1211 remove_filter( $tag, $class_name, $method_name, $priority=10 ); 1212 1212 } 1213 1213 } 1214 1214 if( ! function_exists( 'hr_remove_class_action11') ){ 1215 1215 function hr_remove_class_action11( $tag = 'in_admin_header', $class_name = 'M_Marketing', $method_name = 'admin_header', $priority = 10 ) { 1216 hr_remove_class_filter( $tag, $class_name, $method_name, $priority=10 );1216 remove_filter( $tag, $class_name, $method_name, $priority=10 ); 1217 1217 } 1218 1218 } -
ngg-smart-image-search/trunk/ngg-smart-image-search.php
r3040703 r3041581 17 17 * Plugin URI: https://r-fotos.de/wordpress-plugins/ngg-smart-image-search 18 18 * Description: This plugin provides a customizable smart image search and display function for images in NextGEN galleries. 19 * Version: 3.2. 019 * Version: 3.2.1 20 20 * Requires at least: 5.5.4 21 21 * Requires PHP: 7.0
Note: See TracChangeset
for help on using the changeset viewer.