Asi se ve antes: (por defecto 33 caract.)
Asi se verá despues:
Edita
el Archivo /includes/class_bbcode.php
BUSCAR
Edita los valores de 55 y 36 en forma proporcial, por ejemplo si quieres 10 caracteres más
31-07-2010 01:37
Salud2
Código:
http://misitio.com/archivos/download/32...archivo.rar
Código:
http://misitio.com/archivos/download/3245678545954332145...archivo.rar
el Archivo /includes/class_bbcode.php
BUSCAR
Código PHP:
if (vbstrlen($tmp) > 55 AND $this->is_wysiwyg() == false)
{
$text = htmlspecialchars_uni(vbchop($tmp, 36) . '...' . substr($tmp, -14));
}
else
{
// under the 55 chars length, don't wordwrap this
$text = str_replace(' ', '', $text);
}
Código PHP:
if (vbstrlen($tmp) > 65 AND $this->is_wysiwyg() == false)
{
$text = htmlspecialchars_uni(vbchop($tmp, 46) . '...' . substr($tmp, -14));
}
else
{
// under the 55 chars length, don't wordwrap this
$text = str_replace(' ', '', $text);
}
31-07-2010 01:37
Salud2
Comentario