Remove comment in for statement
-
Hi
In “includes/_toolbar_ui/ui__settings_panel.php” on line 1621 you’ve got some array elements commented-out of your foreach() statement:
foreach ( array("all","new","pending","approved"/*,"booking_today"*/ /*,"was_made_today"*/) as $card_name ) {
...
}This is a common obfuscation technique used by PHP malware, so your file is causing a false positive (for malware) on our hosting platform.
Request: Could you please remove the comments from the foreach() statement, either by assigning the array to a variable just before foreach(), or by removing the comment array elements completely?
Thanks
Paul
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.