PluginProbe
Image Source Control Lite – Show Image Credits and Captions / 3.11.0
Image Source Control Lite – Show Image Credits and Captions v3.11.0
3.12.0 3.11.0 trunk 1.1 1.1.1 1.1.2 1.1.2.1 1.1.3 1.10 1.10.1 1.10.2 1.10.3 1.10.4 1.10.5 1.2 1.2.0.1 1.2.0.2 1.2.0.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.4.1 1.3.5 All 110 releases
← All changes | includes/isc.class.php +1 -5 trunk3.11.0 View file →
@@ -34,12 +34,8 @@
34 34 'image_licence' => [
35 35 'id' => 'isc_image_licence',
36 36 'default' => '',
37 37 ],
38 - 'ai_label' => [
39 - 'id' => 'isc_ai_label',
40 - 'default' => '',
41 - ],
42 38 ];
43 39
44 40 /**
45 41 * Allowed image file types/extensions
@@ -178,9 +174,9 @@
178 174 */
179 175 public function maybe_update_attachment_post_meta( $meta_id, $object_id, $meta_key ) {
180 176 _deprecated_function( __METHOD__, '3.0.0', 'ISC\Image_Sources\Image_Sources::maybe_update_attachment_post_meta' );
181 177
182 - if ( in_array( $meta_key, [ 'isc_image_source_own', 'isc_image_source', ISC\Image_Sources\Ai_Labels::META_KEY ], true ) ) {
178 + if ( in_array( $meta_key, [ 'isc_image_source_own', 'isc_image_source' ], true ) ) {
183 179 ISC_Model::update_missing_sources_transient();
184 180 }
185 181 }
186 182