[Bb-trac] [bbPress] #973: /bb-admin/view-ip.php does not work
bbPress
bb-trac at lists.bbpress.org
Mon Oct 6 15:56:31 GMT 2008
#973: /bb-admin/view-ip.php does not work
----------------------------+-----------------------------------------------
Reporter: chrishajer | Owner:
Type: defect | Status: new
Priority: low | Milestone:
Component: Administration | Version: 1.0-alpha-1
Severity: minor | Keywords: view-ip.php
----------------------------+-----------------------------------------------
Accessing bb-admin/view-ip.php gives you a page with no data. It looks
like this is still broken in the latest trunk:
http://trac.bbpress.org/browser/trunk/bb-admin/view-ip.php#L11
I think that query should be 'poster_ip' instead of 'ip'. When I make
that change locally, it works.
{{{
$post_query = new BB_Query( 'post', array( 'ip' => $ip, 'per_page' => 30 )
);
}}}
becomes
{{{
$post_query = new BB_Query( 'post', array( 'poster_ip' => $ip, 'per_page'
=> 30 ) );
}}}
See relevant discussion here:
http://bbpress.org/forums/topic/viewing-user-ips
--
Ticket URL: <http://trac.bbpress.org/ticket/973>
bbPress <http://bbpress.org/>
Innovative forum development
More information about the Bb-trac
mailing list