mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
Changes for subSilver template and minor other mods
git-svn-id: file:///svn/phpbb/trunk@1101 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
70df43fe94
commit
4e27bb01ff
1 changed files with 24 additions and 15 deletions
|
@ -175,7 +175,7 @@ function validate_optional_fields(&$icq, &$aim, &$msnm, &$yim, &$website, &$loca
|
||||||
//
|
//
|
||||||
if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
|
if( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) )
|
||||||
{
|
{
|
||||||
$mode = ($HTTP_GET_VARS['mode']) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
|
$mode = ( isset($HTTP_GET_VARS['mode']) ) ? $HTTP_GET_VARS['mode'] : $HTTP_POST_VARS['mode'];
|
||||||
//
|
//
|
||||||
// Begin page proper
|
// Begin page proper
|
||||||
//
|
//
|
||||||
|
@ -208,7 +208,7 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||||
// End header
|
// End header
|
||||||
//
|
//
|
||||||
|
|
||||||
if( !$HTTP_GET_VARS[POST_USERS_URL] )
|
if( empty($HTTP_GET_VARS[POST_USERS_URL]) )
|
||||||
{
|
{
|
||||||
// CHANGE THIS!
|
// CHANGE THIS!
|
||||||
message_die(GENERAL_ERROR, "You must supply the user ID number of the user you want to view", "", __LINE__, __FILE__);
|
message_die(GENERAL_ERROR, "You must supply the user ID number of the user you want to view", "", __LINE__, __FILE__);
|
||||||
|
@ -235,7 +235,7 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||||
$percentage = 0;
|
$percentage = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( $profiledata['user_viewemail'] )
|
if( $profiledata['user_viewemail'] && $profiledata['user_email'] != "" )
|
||||||
{
|
{
|
||||||
// Replace the @ with 'at'. Some anti-spam mesures.
|
// Replace the @ with 'at'. Some anti-spam mesures.
|
||||||
$email_addr = str_replace("@", " at ", $profiledata['user_email']);
|
$email_addr = str_replace("@", " at ", $profiledata['user_email']);
|
||||||
|
@ -259,10 +259,23 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||||
|
|
||||||
if( !empty($profiledata['user_icq']) )
|
if( !empty($profiledata['user_icq']) )
|
||||||
{
|
{
|
||||||
$icq_status_img = "<a href=\"http://wwp.icq.com/" . $profiledata['user_icq'] . "#pager\"><img src=\"http://online.mirabilis.com/scripts/online.dll?icq=" . $profiledata['user_icq'] . "&img=5\" border=\"0\" alt=\"\" /></a>";
|
$icq_status_img = "<a href=\"http://wwp.icq.com/" . $profiledata['user_icq'] . "#pager\"><img src=\"http://web.icq.com/whitepages/online?icq=" . $profiledata['user_icq'] . "&img=5\" width=\"18\" height=\"18\" border=\"0\" /></a>";
|
||||||
|
|
||||||
|
//
|
||||||
|
// This cannot stay like this, it needs a 'proper' solution, eg a separate
|
||||||
|
// template for overlaying the ICQ icon, or we just do away with the icq status
|
||||||
|
// display (which is after all somewhat a pain in the rear :D
|
||||||
|
//
|
||||||
|
if( $theme['template_name'] == "subSilver" )
|
||||||
|
{
|
||||||
|
$icq_add_img = '<table width="59" border="0" cellspacing="0" cellpadding="0"><tr><td nowrap="nowrap" class="icqback"><img src="images/spacer.gif" width="3" height="18" alt = "">' . $icq_status_img . '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $profiledata['user_icq'] . '"><img src="images/spacer.gif" width="35" height="18" border="0" alt="' . $lang['ICQ'] . '" /></a></td></tr></table>';
|
||||||
|
$icq_status_img = "";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
$icq_add_img = "<a href=\"http://wwp.icq.com/scripts/search.dll?to=" . $profiledata['user_icq'] . "\"><img src=\"" . $images['icon_icq'] . "\" alt=\"" . $lang['ICQ'] . "\" border=\"0\" /></a>";
|
$icq_add_img = "<a href=\"http://wwp.icq.com/scripts/search.dll?to=" . $profiledata['user_icq'] . "\"><img src=\"" . $images['icon_icq'] . "\" alt=\"" . $lang['ICQ'] . "\" border=\"0\" /></a>";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$icq_status_img = " ";
|
$icq_status_img = " ";
|
||||||
|
@ -618,8 +631,6 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||||
switch($user_avatar_type)
|
switch($user_avatar_type)
|
||||||
{
|
{
|
||||||
case "jpeg":
|
case "jpeg":
|
||||||
$imgtype = '.jpg';
|
|
||||||
break;
|
|
||||||
case "pjpeg":
|
case "pjpeg":
|
||||||
$imgtype = '.jpg';
|
$imgtype = '.jpg';
|
||||||
break;
|
break;
|
||||||
|
@ -720,8 +731,6 @@ if(isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']))
|
||||||
switch($file_type)
|
switch($file_type)
|
||||||
{
|
{
|
||||||
case "jpeg":
|
case "jpeg":
|
||||||
$imgtype = '.jpg';
|
|
||||||
break;
|
|
||||||
case "pjpeg":
|
case "pjpeg":
|
||||||
$imgtype = '.jpg';
|
$imgtype = '.jpg';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue