This error occurs when a user goes over the margin limit in fireboard..
ERROR cuando se sobrepasan los margenes en el posteo de un mensajes, Fireboard.
// Find the first stretch of characters over the $width limit if (preg_match("/^(.*?s|^)(([^s&]|&(w{2,5}|#d{2,4})

{" . $width . "})(?!(" . preg_quote($break, "/"

. "|s))(.*)$/s$utf", $value, $match)) Solucion. // Find the first stretch of characters over the $width limit if (preg_match("/^(.*?s)?(S{".$width."})(?!(".preg_quote($break, "/"

."|s))(.*)$/s".(($utf8
// Find the first stretch of characters over the $width limit if (preg_match("/^(.*?s|^)(([^s&]|&(w{2,5}|#d{2,4})

{" . $width . "})(?!(" . preg_quote($break, "/"

. "|s))(.*)$/s$utf", $value, $match))
Fix:
// Find the first stretch of characters over the $width limit if (preg_match("/^(.*?s)?(S{".$width."})(?!(".preg_quote($break, "/"

."|s))(.*)$/s".(($utf8) ? "u" : ""

, $value, $match)) {
This was provided by CarlosFigueroa (Administrator at
www.viveenlaunah.com)