';
// A hidden form to post data to the spell checking window.
if ($context['show_spellchecking'])
echo '
';
// If the user is replying to a topic show the previous posts.
if (isset($context['previous_posts']) && count($context['previous_posts']) > 0)
{
echo '
' . $txt[468] . '
';
foreach ($context['previous_posts'] as $post)
echo '
';
}
// Now start printing all of the smileys.
if (!empty($context['smileys']['postform']))
{
echo '
';
// Show each row of smileys ;).
foreach ($context['smileys']['postform'] as $smiley_row)
{
foreach ($smiley_row['smileys'] as $smiley)
echo '
';
// If this isn't the last row, show a break.
if (empty($smiley_row['last']))
echo ' ';
}
// If the smileys popup is to be shown... show it!
if (!empty($context['smileys']['popup']))
echo '
[', $txt['more_smileys'], ']';
echo '
';
}
// Show an extra link for additional smileys (if there are any).
if (!empty($context['smileys']['popup']))
{
echo '
';
}
echo '
' . $txt[72] . ':
';
}
function template_spellcheck()
{
global $context, $settings, $options, $txt;
echo '
', $txt['spell_check'], '
';
}
function template_quotefast()
{
global $context, $settings, $options, $txt;
echo '
', $txt['retrieving_quote'], '
', $txt['retrieving_quote'], '
';
}
function template_announce()
{
global $context, $settings, $options, $txt, $scripturl;
echo '
';
}
function template_announcement_send()
{
global $context, $settings, $options, $txt, $scripturl;
echo '
';
}
?>