This what i used for 5.46
##########################################
IP Display Upgrade
The display IP page does only that Displays IP, this hack as simple as it may be now displays IP and HOST!
files to be modified = postings.cgi
find:
if ($ThisIP eq "") {
&StandardHTML("Sorry, we could not find a record for that post. Perhaps someone recently deleted it.");
exit;
}
and right after it add:
$ThisDomain = gethostbyaddr(inet_aton($ThisIP), AF_INET);
then find:
$ThisIP
and replace it with:
$ThisIP $ThisDomain
#############################