mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 20:13:22 +01:00
- removed the split_words array, introduced an enforced search_query - the forum used for global topics in the search is now a forum, and no longer a category [Bug #2561] - Bug #3404 - allow accessing reports by report_id, in contrast to mcp_queue this cannot just use the post id, since there can be multiple closed reports per post, so closed reports have to be accessed by report id, open reports, can optionally be accessed by report id or post id [Bug #3149] - only attempt to unflag reported topics on closing a report when there are any without other reported posts [Bug #3057] - updated fulltext_mysql to use the the search_query string - overwrote the old fulltext_native with our improved version since it consumes too much time to maintain boths and we would switch to the improved version later anyway - always show a link to search a user's posts even if the postcount is zero since he might only have posted in forums which do not count posts [Bug #3267] git-svn-id: file:///svn/phpbb/trunk@6211 89ea8834-ac86-4346-8a33-228a782c2dd0
197 lines
7.3 KiB
HTML
197 lines
7.3 KiB
HTML
<!-- INCLUDE overall_header.html -->
|
|
|
|
<div id="pagecontent">
|
|
|
|
<form method="post" action="{S_PROFILE_ACTION}">
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1">
|
|
<tr>
|
|
<th colspan="2" nowrap="nowrap">{L_VIEWING_PROFILE}</th>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" width="40%" align="center"><h4>{L_USER_PRESENCE}</h4></td>
|
|
<td class="cat" width="60%" align="center"><h4>{L_USER_FORUM}</h4></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" align="center">
|
|
|
|
<table cellspacing="1" cellpadding="2" border="0">
|
|
<tr>
|
|
<td align="center"><!-- IF USER_COLOR --><b class="gen" style="color: #{USER_COLOR}"><!-- ELSE --><b class="gen"><!-- ENDIF -->{USERNAME}</b><!-- IF U_USER_ADMIN --><span class="genmed"> [ <a href="{U_USER_ADMIN}">{L_USER_ADMIN}</a> ]</span><!-- ENDIF --></td>
|
|
</tr>
|
|
<!-- IF RANK -->
|
|
<tr>
|
|
<td class="postdetails" align="center">{RANK}</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF RANK_IMG -->
|
|
<tr>
|
|
<td align="center">{RANK_IMG}</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF AVATAR_IMG -->
|
|
<tr>
|
|
<td align="center">{AVATAR_IMG}</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF ONLINE_IMG -->
|
|
<tr>
|
|
<td align="center">{ONLINE_IMG}</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF U_SWITCH_PERMISSIONS -->
|
|
<tr>
|
|
<td class="genmed" align="center">[ <a href="{U_SWITCH_PERMISSIONS}">{L_USE_PERMISSIONS}</a> ]</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- IF S_USER_LOGGED_IN and S_ZEBRA -->
|
|
<tr>
|
|
<td class="genmed" align="center">[ <a href="{U_ADD_FRIEND}">{L_ADD_FRIEND}</a> | <a href="{U_ADD_FOE}">{L_ADD_FOE}</a> ]</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
</table>
|
|
</td>
|
|
<td class="row1">
|
|
<table width="100%" cellspacing="1" cellpadding="2" border="0">
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_JOINED}: </td>
|
|
<td width="100%"><b class="gen">{JOINED}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_VISITED}: </td>
|
|
<td width="100%"><b class="gen">{VISITED}</b></td>
|
|
</tr>
|
|
<!-- IF U_NOTES or U_WARN -->
|
|
<tr>
|
|
<td class="gen" align="right" valign="top" nowrap="nowrap">{L_WARNINGS}: </td>
|
|
<td width="100%"><b class="gen">{WARNINGS}</b><br /><span class="genmed">[ <a href="{U_NOTES}">{L_VIEW_NOTES}</a> <!-- IF U_WARN --> | <a href="{U_WARN}">{L_WARN_USER}</a> <!-- ENDIF -->]</td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td class="gen" align="right" valign="top" nowrap="nowrap">{L_TOTAL_POSTS}: </td>
|
|
<td><b class="gen">{POSTS}</b><!-- IF POSTS_PCT neq 0 --><br /><span class="genmed">[{POSTS_PCT} / {POSTS_DAY}]<!-- ENDIF --><br /><a href="{U_SEARCH_USER}">{L_SEARCH_USER_POSTS}</a></span></td>
|
|
</tr>
|
|
<!-- IF S_SHOW_ACTIVITY -->
|
|
<tr>
|
|
<td class="gen" align="right" valign="top" nowrap="nowrap">{L_ACTIVE_IN_FORUM}: </td>
|
|
<td><!-- IF ACTIVE_FORUM_PCT neq 0 --><b><a class="gen" href="{U_ACTIVE_FORUM}">{ACTIVE_FORUM}</a></b><br /><span class="genmed">[ {ACTIVE_FORUM_POSTS} / {ACTIVE_FORUM_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" valign="top" nowrap="nowrap">{L_ACTIVE_IN_TOPIC}: </td>
|
|
<td><!-- IF ACTIVE_TOPIC_PCT neq 0 --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="gensmall">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="cat" align="center"><h4>{L_CONTACT_USER}</h4></td>
|
|
<td class="cat" align="center"><h4>{L_ABOUT_USER}</h4></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1">
|
|
<table width="100%" cellspacing="1" cellpadding="2" border="0">
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_EMAIL_ADDRESS}: </td>
|
|
<td width="100%"><!-- IF U_EMAIL --><a href="{U_EMAIL}">{EMAIL_IMG}</a><!-- ENDIF --></td>
|
|
</tr>
|
|
<!-- IF U_PM -->
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_PM}: </td>
|
|
<td><a href="{U_PM}">{PM_IMG}</a></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_MSNM}: </td>
|
|
<td><!-- IF U_MSN --><a href="{U_MSN}" onclick="popup('{U_MSN}', 550, 320); return false">{MSN_IMG}</a><!-- ENDIF --></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_YIM}: </td>
|
|
<td><!-- IF U_YIM --><a href="{U_YIM}" onclick="popup('{U_YIM}', 780, 550); return false">{YIM_IMG}</a><!-- ENDIF --></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_AIM}: </td>
|
|
<td><!-- IF U_AIM --><a href="{U_AIM}" onclick="popup('{U_AIM}', 550, 320); return false">{AIM_IMG}</a><!-- ENDIF --></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_ICQ}: </td>
|
|
<td><!-- IF U_ICQ --><a href="{U_ICQ}" onclick="popup('{U_ICQ}', 550, 320); return false">{ICQ_IMG}</a><!-- ENDIF --></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" nowrap="nowrap" align="right">{L_JABBER}: </td>
|
|
<td><!-- IF U_JABBER and S_JABBER_ENABLED --><a href="{U_JABBER}" onclick="popup('{U_JABBER}', 550, 320); return false">{JABBER_IMG}</a><!-- ELSEIF U_JABBER -->{JABBER_IMG}<!-- ENDIF --></td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
<td class="row1">
|
|
<table cellspacing="1" cellpadding="2" border="0">
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_USERGROUPS}: </td>
|
|
<td><select name="g">{S_GROUP_OPTIONS}</select> <input class="btnlite" type="submit" name="submit" value="{L_GO}" /></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_LOCATION}: </td>
|
|
<td><b class="genmed">{LOCATION}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_AGE}: </td>
|
|
<td><b class="genmed">{AGE}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_OCCUPATION}: </td>
|
|
<td><b class="genmed">{OCCUPATION}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_INTERESTS}: </td>
|
|
<td><b class="genmed">{INTERESTS}</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{L_WEBSITE}: </td>
|
|
<td><b><!-- IF U_WWW --><a class="genmed" href="{U_WWW}" target="_userwww">{U_WWW}</a><!-- ENDIF --></b></td>
|
|
</tr>
|
|
<!-- IF S_PROFILE_FIELD1 -->
|
|
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{PROFILE_FIELD1_NAME}: </td>
|
|
<td><b class="genmed">{PROFILE_FIELD1_VALUE}</b></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
<!-- BEGIN custom_fields -->
|
|
<tr>
|
|
<td class="gen" align="right" nowrap="nowrap">{custom_fields.PROFILE_FIELD_NAME}: </td>
|
|
<td><b class="genmed">{custom_fields.PROFILE_FIELD_VALUE}</b></td>
|
|
</tr>
|
|
<!-- END custom_fields -->
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<!-- IF SIGNATURE -->
|
|
<tr>
|
|
<td class="cat" colspan="2" align="center"><h4>{L_SIGNATURE}</h4></td>
|
|
</tr>
|
|
<tr>
|
|
<td class="row1" colspan="2"><div class="postbody" style="padding: 10px;">{SIGNATURE}</div></td>
|
|
</tr>
|
|
<!-- ENDIF -->
|
|
</table>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<br clear="all" />
|
|
|
|
<table class="tablebg" width="100%" cellspacing="1" cellpadding="0">
|
|
<tr>
|
|
<td class="row1">
|
|
<p class="breadcrumbs"><a href="{U_INDEX}">{L_INDEX}</a><!-- BEGIN navlinks --> » <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a><!-- END navlinks --></p>
|
|
<p class="datetime">{S_TIMEZONE}</p>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<br clear="all" />
|
|
|
|
<div style="float: right;"><!-- INCLUDE jumpbox.html --></div>
|
|
|
|
<!-- INCLUDE overall_footer.html --> |