Changeset 12868
- Timestamp:
- 08/29/2023 08:07:20 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/inc/flagged.php
r12782 r12868 378 378 // Function to check if a new node is the Quick Edit or Bulk Edit form 379 379 function checkNewNode(target) { 380 if (target .classList.contains('inline-edit-<?php echo Registrations::get_post_type(); ?>') || target.id === 'bulk-edit') {380 if (target instanceof HTMLElement && (target.classList.contains('inline-edit-<?php echo Registrations::get_post_type(); ?>') || target.id === 'bulk-edit')) { 381 381 addNewStatus(target); 382 382 }
Note: See TracChangeset
for help on using the changeset viewer.