Anuncio
Colapsar
No hay anuncio todavía.
Cómo aumentar la cantidad de caracteres que se muestran en la URL
Colapsar
X
-
Cómo aumentar la cantidad de caracteres que se muestran en la URL
Asi se ve antes: (por defecto 33 caract.)
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
Salud2Etiquetas: Ninguno
Dejar un comentario: