DafDogs_body.tpl
Verfasst: 19.03.2005 16:06
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------------
#
<a href="{DOG_DETAILS}" target="_dafdogs">{postrow.L_DOG_DETAILS}</a>
#
#-----[ REPLACE WITH ]------------------------------------------------
#
<a href="{postrow.U_DOG_DETAILS}" target="_dafdogs">{postrow.L_DOG_DETAILS}</a>
#
#-----[ SAVE/CLOSE FILE ]--------------------------------
#
# EoM
Dito ...easygo hat geschrieben:Nettes Feedback ^^ gerne wiedereasy
Hehe... das klingt ja fast wie aufgedrängt!dogsandfun hat geschrieben:Ihr habt euch ja angeboten ... daher nochmals die Frage hier in dem Thread.
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------------
#
<a href="{postrow.U_DOG_DETAILS}" target="_dafdogs">{postrow.L_DOG_DETAILS}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------------
#
<!-- BEGIN switch_user_logged_in -->
<a href="{postrow.U_DOG_DETAILS}" target="_dafdogs">{postrow.L_DOG_DETAILS}</a><br />
<!-- END switch_user_logged_in -->
#
#-----[ SAVE/CLOSE FILE ]--------------------------------
#
# EoM
Code: Alles auswählen
//begin map MOD
if (($poster_from != '') && ( $userdata['session_logged_in'] ) && ((float)$postrow[$i]['longitude'] != 0)) {
$template->assign_block_vars('postrow.switch_map', array(
'U_MAP' => append_sid("map.$phpEx?highlight=".$postrow[$i]['user_id'])
));
}
else {
$template->assign_block_vars('postrow.switch_no_map', array());
}
//end map MOD
Ahja Versuch wars wert ^^dogsandfun hat geschrieben:eben das geht nicht - baue ich das so ein - ist der Link komplett weg - egal ob eingeloggt oder nicht - ich habe auch daran gedacht die beiden Switch Zeilen in eine einzelne Zeile zu setzen...
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------------
#
viewtopic.php
#
#-----[ FIND ]------------------------------------------------
#
$yim = ( $postrow[$i]['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $postrow[$i]['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : '';
#
#-----[ AFTER, ADD ]------------------------------------------------
#
$temp_url = append_sid("dafdogs.$phpEx?" . POST_USERS_URL .'=' . $poster_id);
$dafdogs = '<a class="nav" href="' . $temp_url . '" target="_dafdogs">' . $lang['Dog_details'] . ': ''</a><br />';
#
#-----[ FIND ]------------------------------------------------
#
$yim = '';
#
#-----[ AFTER, ADD ]------------------------------------------------
#
$dafdogs = '';
#
#-----[ FIND ]------------------------------------------------
#
'L_DOG_DETAILS' => $lang['Dog_details'],
'U_DOG_DETAILS' => append_sid("dafdogs.$phpEx?" . POST_USERS_URL .'=' . $poster_id),
#
#-----[ REPLACE WITH ]------------------------------------------------
#
'DOG_DETAILS' => $dafdogs;
#
#-----[ OPEN ]------------------------------------------------
#
viewtopic_body.tpl
#
#-----[ FIND ]------------------------------------------------
#
<a href="{postrow.U_DOG_DETAILS}" target="_dafdogs">{postrow.L_DOG_DETAILS}</a><br />
#
#-----[ REPLACE WITH ]------------------------------------------------
#
{postrow.DOG_DETAILS}
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM