Display Users IP in Viewtopic

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Display Users IP in Viewtopic

Post by Stoker »

Display Users IP in Viewtopic
Written by rxu

Shows posters' IP addresses in topic for administrators and moderators.

Open viewtopic.php
Find:

Code: Select all

'post_edit_user'	 => $row['post_edit_user'],
After add:

Code: Select all

'poster_ip'			=> $row['poster_ip'],
Find:

Code: Select all

'POSTER_ID'			 => $poster_id,
After add:

Code: Select all

'POSTER_IP'			=> (($auth->acl_get('a_') || $auth->acl_get('m_')) && $user->data['is_registered']) ? $row['poster_ip'] : '',
Open styles/prosilver/template/viewtopic_body.html
Find:

Code: Select all

<!-- IF postrow.POSTER_FROM --><dd><strong>{L_LOCATION}:</strong> {postrow.POSTER_FROM}</dd><!-- ENDIF -->
After add:

Code: Select all

<!-- IF postrow.POSTER_IP --><dd><strong>{L_IP}:</strong> {postrow.POSTER_IP}</dd><!-- ENDIF -->
Open styles/subsilver2/template/viewtopic_body.html
Find:

Code: Select all

<!-- IF postrow.POSTER_FROM --><br /><b>{L_LOCATION}:</b> {postrow.POSTER_FROM}<!-- ENDIF -->
After add:

Code: Select all

<!-- IF postrow.POSTER_IP --><br /><b>{L_IP}:</b> {postrow.POSTER_IP}<!-- ENDIF -->