diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-06-05 19:12:05 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-06-05 19:12:05 +0000 |
commit | f0c133a55954c479462cbb356f40c42237b52d6c (patch) | |
tree | f1cc9feca08a66cc918a2384b3b2ed614a239c00 /phpBB/templates | |
parent | da2c292d2d68e5b7eaf61e345f4f8fddfba57696 (diff) | |
download | forums-f0c133a55954c479462cbb356f40c42237b52d6c.tar forums-f0c133a55954c479462cbb356f40c42237b52d6c.tar.gz forums-f0c133a55954c479462cbb356f40c42237b52d6c.tar.bz2 forums-f0c133a55954c479462cbb356f40c42237b52d6c.tar.xz forums-f0c133a55954c479462cbb356f40c42237b52d6c.zip |
Minor change: do not display the "lookup ip" link if the IP has already been resolved
git-svn-id: file:///svn/phpbb/trunk@4083 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/templates')
-rw-r--r-- | phpBB/templates/subSilver/mcp_post.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/templates/subSilver/mcp_post.html b/phpBB/templates/subSilver/mcp_post.html index 80883acec0..3284dea2b0 100644 --- a/phpBB/templates/subSilver/mcp_post.html +++ b/phpBB/templates/subSilver/mcp_post.html @@ -51,7 +51,7 @@ <!-- END userrow --> <tr> <td height="28" class="cat"><b class="gen">{L_OTHER_IPS}</b></td> - <td class="cat" width="10%" nowrap="nowrap"><span class="gen">[ <a href="{U_LOOKUP_ALL}">{L_LOOKUP_ALL}</a> ]</span></td> + <td class="cat" width="10%" nowrap="nowrap"><!-- IF U_LOOKUP_ALL --><span class="gen">[ <a href="{U_LOOKUP_ALL}">{L_LOOKUP_ALL}</a> ]</span><!-- ENDIF --></td> </tr> <!-- BEGIN iprow --> <!-- IF iprow.S_ROW_COUNT is even --> @@ -60,7 +60,7 @@ <tr class="row2"> <!-- ENDIF --> <td><span class="gen">{iprow.IP} [ {iprow.POSTS} ]</span></td> - <td align="center"><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a> ]</span></td> + <td align="center"><!-- IF iprow.U_LOOKUP_IP --><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a> ]</span><!-- ENDIF --></td> </tr> <!-- END iprow --> </table> |