When generic_data_string type modules return markup, Pandora Web console truncated value for output/formatting reasons. This can lead to inconsistent HTML in displayed page.
Example:
Pandora Web SiteWe've fixed this the easiest way ;-) We do not truncate the string.
To keep the displayed page "nice", you might want to do some other way :-D
Nonetheless, we changed the following way:
Code location: pandora_web/operation/agentes/estado_ultimopaquete.php
Code inserted:
else { # Writing string data in different way :)
echo "<td class='f9' colspan='2'>";
# echo substr($row3["datos"],0,42);
echo $row3["datos"];
}
Cheers