|
From: Paul S. O. <ps...@us...> - 2002-05-09 14:08:44
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv26916 Modified Files: modcp.php Log Message: IP related updates Index: modcp.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/modcp.php,v retrieving revision 1.72 retrieving revision 1.73 diff -C2 -r1.72 -r1.73 *** modcp.php 20 Apr 2002 00:22:27 -0000 1.72 --- modcp.php 9 May 2002 14:08:41 -0000 1.73 *************** *** 832,836 **** } ! $ip_this_post = decode_ip($post_row['poster_ip']); $ip_this_post = ( $rdns_ip_num == $ip_this_post ) ? gethostbyaddr($ip_this_post) : $ip_this_post; --- 832,836 ---- } ! $ip_this_post = $post_row['poster_ip']; $ip_this_post = ( $rdns_ip_num == $ip_this_post ) ? gethostbyaddr($ip_this_post) : $ip_this_post; *************** *** 878,882 **** } ! $ip = decode_ip($row['poster_ip']); $ip = ( $rdns_ip_num == $row['poster_ip'] || $rdns_ip_num == 'all') ? gethostbyaddr($ip) : $ip; --- 878,882 ---- } ! $ip = $row['poster_ip']; $ip = ( $rdns_ip_num == $row['poster_ip'] || $rdns_ip_num == 'all') ? gethostbyaddr($ip) : $ip; |