Teigan wrote:
I noticed something, due to my recent owl obsession. Nevar mentioned an owl that tames as a Carrion Bird, so I went to look for it. It's the Akkarai Hatchling under
http://www.wow-petopia.com/look/owlarrokoagreen.html.
You noted it is in fact a carrion bird there, on the page for the skin. But I was thinking, since you have the "other beasts with similar looks" section at the bottom, with the crow in it, why not throw the ferocity owl into the similar beasts section as well, to make it more apparent that there is indeed a ferocity owl? And also maybe add to the mouseover table that it's a Carrion Bird?
And, it's not listed under the Carrion birds section. You have the brown owl listed under the "other beasts with similar looks" section of the Carrion birds page, but the ferocity owl itself isn't listed as a Carrion bird.
So, the only way people would know there's a ferocity owl is to be looking at the actual brown owl page itself. And, those are probably people looking for a normal bird of prey owl, not a carrion bird owl.
So, there's my really long and complicated two cents worth.
I REALLY like the new features, though!
I have a special nickname for the Akkarai Hatchling: "that damned bird". Like "Count" Ungula (that damned netherray) he tends to ruin my scripts. Skin are currently linked to one family in the DB, but I should be able to add the family to the index and get something a little more accurate. I'll see what I can do, anyway.

Edit: And here is what you've wrought:
Code:
$seeAlsoLooks = $db->fetchAll( "(SELECT DISTINCT looks2.look_key,
looks2.look_name,
looks2.look_plural,
looks2.family_key,
looks2.look_order AS final_order
FROM looks looks1
INNER JOIN looks looks2
ON looks1.look_key = looks2.look_key
AND looks1.family_key != looks2.family_key
WHERE looks1.family_key = ?)
UNION
(SELECT DISTINCT looks.look_key,
looks.look_name,
looks.look_plural,
looks.family_key,
looks.look_order
FROM looks
INNER JOIN pets
ON looks.look_key = pets.look_key
AND looks.family_key = pets.family_key
WHERE looks.see_also_family_key = ?)
ORDER BY final_order",
array($id, $id));