79772707

Date: 2025-09-23 14:19:11
Score: 0.5
Natty:
Report link

The issue is that the & character in "Bunnies & Burrows" is being interpreted as the start of an XML entity (like &, <, etc.), but "Burrows" isn't a valid XML entity name.

The Fix: XML Escape the Ampersand

In XML, you need to escape the & character as &:

search_term = "Bunnies & Burrows"xml_safe_term = search_term.replace("&", "&")# Result: "Bunnies & Burrows"

Try this and see if it yields any clues:

<?php

$test = "Bunnies & Burrows";

echo "Original: " . $test . "\n";

echo "Escaped: " . htmlspecialchars($test, ENT_XML1, 'UTF-8') . "\n";echo "Manual: " . str_replace('&', '&', $test) . "\n";

Reasons:
  • Whitelisted phrase (-1): Try this
  • Long answer (-0.5):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Brian Geraghty