Code: Select all
<!-- IF TOPIC_MOVED_MODE eq 'topic' -->
<font style="font-size:11px;font-style:italic;">{TOPIC_MOVED_MESSAGE} {TOPIC_MOVED_FROM} {TOPIC_MOVED_TO} {TOPIC_MOVED_ON} {TOPIC_MOVED_BY}.
This topic was moved from [b]XYZ[/b] to [b]ABC[/b] on 4. Nov 2011, 12:18 by [b]nashra[/b]
Code: Select all
$to_or_from = ($mode == 'forum') ? 'TOPIC_MOVED_TO' : 'TOPIC_MOVED_FROM';
Code: Select all
$msg['forum'] = empty($msg['forum']) ? '' : sprintf($user->lang['PRIME_' . $to_or_from], $msg['forum']);
Code: Select all
$to_or_from => $msg['forum'],
Yes sorry, I translate with Google Translateprimehalo wrote:That is a very confusing sentence. Did you use translation software?
includes/prime_topic_move.php
so that {TOPIC_MOVED_TO}
could be shown in <!-- IF TOPIC_MOVED_MODE eq 'topic' -->
. I know it doesn't make sense but it's the way how the guys at phpbb.de have customized it .Code: Select all
<!-- IF postrow.TOPIC_MOVED_MESSAGE -->
<div id="information" class="rules" style=text-align:center;"><span class="corners-top"><span></span></span>
{postrow.TOPIC_MOVED_MESSAGE}
<span class="corners-bottom"><span></span></span>
</div>
<!-- ENDIF -->
<!-- IF S_QUICK_REPLY -->
<!-- INCLUDE quickreply_editor.html -->
<!-- ENDIF -->
<!-- IF QUICK_REPLY_ALLOWED --><!-- INCLUDE prime_quick_reply.html --><!-- ENDIF -->
<!-- IF S_NUM_POSTS > 1 or PREVIOUS_PAGE -->
Code: Select all
<!-- BEGIN postrow -->
<!-- ENd postrow -->
Code: Select all
<!-- INCLUDE prime_topic_move.html -->