14/03/2011, 00:04
|
| | Fecha de Ingreso: enero-2011
Mensajes: 13
Antigüedad: 14 años Puntos: 0 | |
Respuesta: Errores en plantilla {simplemachines} claro mi sitio web es http://swatgeneration.com/foro
estuve revisando el index y creo q esto tiene algo q ver con ese error ¿no?
pero la verdad en programacion yo solo sé que no sé nada xDD
help me~
Código:
<?php
// Version: 1.1; Display
function template_main()
{
global $context, $settings, $options, $txt, $scripturl, $modSettings;
// Show the anchor for the top and for the first message. If the first message is new, say so.
echo '
<a name="top"></a>
<a name="msg', $context['first_message'], '"></a>', $context['first_new_message'] ? '<a name="new"></a>' : '';
// Show the linktree
echo '
<div>', theme_linktree(), '</div>';
// Is this topic also a poll?
if ($context['is_poll'])
{
echo '
<table cellpadding="3" cellspacing="0" border="0" width="100%" class="tborder" style="padding-top: 0; margin-bottom: 2ex;">
<tr>
<td class="titlebg" colspan="2" valign="middle" style="padding-left: 6px;">
<img src="', $settings['images_url'], '/topic/', $context['poll']['is_locked'] ? 'normal_poll_locked' : 'normal_poll', '.gif" alt="" align="bottom" /> ', $txt['smf43'], '
</td>
</tr>
<tr>
|